Skip to content

Commit a15ca09

Browse files
committed
Add CircleCI configuration to stable branch
1 parent 0a2eed9 commit a15ca09

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

.circleci/config.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2.1
2+
orbs:
3+
slack: circleci/[email protected]
4+
workflows:
5+
version: 2
6+
build:
7+
jobs:
8+
- compile_driver
9+
10+
jobs:
11+
compile_driver:
12+
docker:
13+
- image: cimg/openjdk:8.0.272
14+
steps:
15+
- checkout
16+
- run: |
17+
mvn test | grep '^\[\|^ExecuteWorkloadMode' | tee mvn.log
18+
grep 'BUILD SUCCESS' mvn.log

.travis.yml

-14
This file was deleted.

0 commit comments

Comments
 (0)