forked from AmailP/robot-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
24 lines (22 loc) · 683 Bytes
/
circle.yml
File metadata and controls
24 lines (22 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
machine:
java:
version: oraclejdk8
test:
override:
- ? |
case $CIRCLE_NODE_INDEX in
0)
IDEA_VERSION=IC-163.13906.18 ./gradlew --console plain check buildPlugin
;;
1)
IDEA_VERSION=IC-163.13906.18 ./gradlew --console plain check
;;
esac
:
parallel: true
post:
- mkdir -p $CIRCLE_TEST_REPORTS/junit/
- find . -type f -regex ".*/build/test-results/.*xml" -exec cp {} $CIRCLE_TEST_REPORTS/junit/ \;
- mkdir -p $CIRCLE_TEST_REPORTS/html/
- cp -r build/reports/tests/* $CIRCLE_TEST_REPORTS/html/
- cp build/distributions/robot-plugin.zip $CIRCLE_ARTIFACTS