Skip to content

Commit 409ee85

Browse files
authored
Add pipeline for buildkite with initial stages (#1124)
Add the first Buildkite definition pipeline with the initial stages (check statics and run unit tests).
1 parent ed8b57f commit 409ee85

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.buildkite/pipeline.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
steps:
2+
- label: ":go: Run check-static"
3+
command: "make check-static"
4+
agents:
5+
image: "golang:1.19.5"
6+
cpu: "8"
7+
memory: "4G"
8+
9+
- label: ":go: Run unit tests"
10+
command: "make test-go-ci"
11+
artifact_paths:
12+
- "build/test-results/*.xml"
13+
- "build/test-coverage/*.xml"
14+
agents:
15+
image: "golang:1.19.5"
16+
cpu: "8"
17+
memory: "4G"
18+
19+
- wait: ~
20+
continue_on_failure: true
21+
22+
- label: "Junit annotate"
23+
plugins:
24+
- junit-annotate#v2.4.1:
25+
artifacts: "build/test-results/*.xml"
26+
agents:
27+
provider: "gcp"
28+

0 commit comments

Comments
 (0)