Skip to content

Commit

Permalink
Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
keilw committed Mar 15, 2023
1 parent ddb49f9 commit add7b0f
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
clean:
docker:
# specify the version you desire here
- image: cimg/openjdk:16.0
- image: cimg/openjdk:17.0.6

working_directory: ~/repo

Expand All @@ -18,12 +18,14 @@ jobs:
steps:
- checkout

# run coverage!
- run: mvn clean
# run clean!
- run:
name: Clean
command: mvn clean
build:
docker:
# specify the version you desire here
- image: cimg/openjdk:16.0
- image: cimg/openjdk:17.0.6

working_directory: ~/repo

Expand All @@ -35,7 +37,9 @@ jobs:
- checkout

# run tests!
- run: mvn integration-test
- run:
name: Test
command: mvn integration-test

workflows:
version: 2
Expand Down

0 comments on commit add7b0f

Please sign in to comment.