Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
arvindkrishnakumar-okta authored May 16, 2022
1 parent 4b22091 commit b67f7b3
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,32 @@
version: 2.1

jobs:
build:

jdk8:
docker:
- image: cimg/openjdk:8.0.322
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- run: java -version
- run:
name: Build
command: ./mvnw clean install -Pci

jdk11:
docker:
- image: cimg/openjdk:11.0.13
environment:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- run: java -version
- run:
name: Build
command: ./mvnw clean install -Pci

jdk17:
docker:
- image: cimg/openjdk:17.0.3
environment:
Expand All @@ -16,4 +41,6 @@ jobs:
workflows:
build_and_test:
jobs:
- build
- jdk8
- jdk11
- jdk17

0 comments on commit b67f7b3

Please sign in to comment.