Skip to content

Commit

Permalink
Merge pull request #186 from okta/eva_circle_Ci
Browse files Browse the repository at this point in the history
Added Circle CI config
  • Loading branch information
arvindkrishnakumar-okta authored May 16, 2022
2 parents 77e14e9 + b67f7b3 commit 9e7ce01
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
version: 2.1

jobs:

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:
JVM_OPTS: -Xmx3200m
steps:
- checkout
- run: java -version
- run:
name: Build
command: ./mvnw clean install -Pci

workflows:
build_and_test:
jobs:
- jdk8
- jdk11
- jdk17
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@
</parameter>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>3.0.0-M6</version>
</plugin>
</plugins>
</pluginManagement>
</build>
Expand Down

0 comments on commit 9e7ce01

Please sign in to comment.