Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit b8fdb57

Browse files
committed
Add buildkite pipeline
1 parent 948729b commit b8fdb57

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

pipeline.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
steps:
2+
- command: "./gradlew clean assemble"
3+
label: "compile"
4+
artifact_paths: "build/libs/*.jar"
5+
timeout: 2
6+
7+
- wait
8+
9+
- command: "./gradlew test"
10+
label: "unit tests"
11+
artifact_paths: "build/reports/tests/xml/*.xml"
12+
timeout: 10
13+
14+
- wait: ~
15+
continue_on_failure: true
16+
17+
- plugins:
18+
junit-annotate#v1.2.0:
19+
artifacts: build/reports/tests/xml/*.xml
20+
21+
- command: "./gradlew checkstyleMain"
22+
label: "checkstyle"
23+
timeout: 2
24+
25+
- command: "./gradlew jacocoTestCoverageVerification"
26+
label: "jacoco"
27+
timeout: 2

0 commit comments

Comments
 (0)