Test CI
This commit is contained in:
parent
189558113b
commit
7a647cc116
1 changed files with 24 additions and 0 deletions
24
.gitlab-ci.yml
Normal file
24
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,24 @@
|
|||
image: java:8
|
||||
|
||||
stages:
|
||||
- build
|
||||
- deploy
|
||||
|
||||
before_script:
|
||||
- chmod +x mvnw
|
||||
|
||||
build:
|
||||
stage: build
|
||||
script: ./mvnw package
|
||||
artifacts:
|
||||
paths:
|
||||
- target/demo-0.0.1-SNAPSHOT.jar
|
||||
|
||||
production:
|
||||
stage: deploy
|
||||
script:
|
||||
- curl --location "https://cli.run.pivotal.io/stable?release=linux64-binary&source=github" | tar zx
|
||||
- ./cf login -u $CF_USERNAME -p $CF_PASSWORD -a api.run.pivotal.io
|
||||
- ./cf push
|
||||
only:
|
||||
- master
|
Loading…
Add table
Reference in a new issue