diff --git a/.circleci/config.yml b/.circleci/config.yml index 27266e9b..6e9f393e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 @@ -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 @@ -35,7 +37,9 @@ jobs: - checkout # run tests! - - run: mvn integration-test + - run: + name: Test + command: mvn integration-test workflows: version: 2