-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip(buildkite integration): linux/windows in separated YML
- Loading branch information
Showing
4 changed files
with
35 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
agents: | ||
queue: "agent-runners-linux-amd64" | ||
|
||
steps: | ||
- label: ":bazel: Build on gcc" | ||
commands: | ||
- CC=gcc bazelisk build --copt=-std=c++20 //... | ||
- label: ":bazel: Test on gcc" | ||
commands: | ||
- CC=gcc bazelisk test --copt=-std=c++20 //... | ||
|
||
- label: ":bazel: Build on Clang" | ||
commands: | ||
- CC=clang bazelisk build --copt=-std=c++20 //... | ||
- label: ":bazel: Test on Clang" | ||
commands: | ||
- CC=clang bazelisk test --copt=-std=c++20 //... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
agents: | ||
queue: "agent-runners-windows-amd64" | ||
|
||
steps: | ||
- label: ":bazel: Build" | ||
commands: | ||
- bazelisk test --copt=/std:c++20 //... | ||
- label: ":pipeline: Launch Windows Pipeline" | ||
command: "buildkite-agent pipeline upload ./buildkite/windows_amd64.yml" | ||
- label: ":pipeline: Launch Linux Pipeline" | ||
command: "buildkite-agent pipeline upload ./buildkite/linux_amd64.yml" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: "ProjectCore" | ||
steps: | ||
- label: ":pipeline:" | ||
- label: ":pipeline: Launch Embbeded pipeline.yml" | ||
command: "buildkite-agent pipeline upload" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
agents: | ||
queue: "agent-runners-windows-amd64" | ||
|
||
steps: | ||
- label: ":bazel: Build" | ||
commands: | ||
- bazelisk build --copt=/std:c++20 //... | ||
- label: ":bazel: Test" | ||
commands: | ||
- bazelisk test --copt=/std:c++20 //... |