mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 14:55:51 +00:00
fix circleci
This commit is contained in:
parent
7712b8a5df
commit
1185b3c772
1 changed files with 15 additions and 1 deletions
|
@ -4,6 +4,13 @@
|
||||||
#
|
#
|
||||||
version: 2
|
version: 2
|
||||||
jobs:
|
jobs:
|
||||||
|
test:
|
||||||
|
docker:
|
||||||
|
- image: circleci/openjdk:8-jdk
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- run: gradle test
|
||||||
|
|
||||||
build:
|
build:
|
||||||
docker:
|
docker:
|
||||||
# specify the version you desire here
|
# specify the version you desire here
|
||||||
|
@ -42,4 +49,11 @@ jobs:
|
||||||
- run: gradle test
|
- run: gradle test
|
||||||
|
|
||||||
#generate jar
|
#generate jar
|
||||||
- jar: gradle jar
|
- run: gradle jar
|
||||||
|
|
||||||
|
workflows:
|
||||||
|
version: 2
|
||||||
|
test_and_build:
|
||||||
|
jobs:
|
||||||
|
- test
|
||||||
|
- build
|
||||||
|
|
Loading…
Reference in a new issue