1
Fork 0
hermetic_cc_toolchain/.build.yml

24 lines
770 B
YAML
Raw Normal View History

2021-06-08 06:30:06 +03:00
image: debian/testing
packages:
- curl
sources:
- https://git.sr.ht/~motiejus/bazel-zig-cc
environment:
2021-06-08 06:33:06 +03:00
CC: /usr/bin/false
2021-06-08 06:30:06 +03:00
tasks:
- setup: |
curl -L https://github.com/bazelbuild/bazelisk/releases/download/v1.9.0/bazelisk-linux-amd64 \
2021-06-08 06:34:21 +03:00
-o bazel
chmod +x bazel
2021-06-08 06:56:37 +03:00
- test_default: |
cd bazel-zig-cc; ../bazel run --toolchain_resolution_debug=true \
//test:gognu
2021-06-08 06:30:06 +03:00
- test_musl: |
2021-06-08 06:56:37 +03:00
cd bazel-zig-cc; ../bazel run --toolchain_resolution_debug=true \
--platforms @com_github_ziglang_zig//:platform_linux-x86_64-musl \
//test:gomusl
2021-06-08 06:30:06 +03:00
- test_gnu: |
2021-06-08 06:56:37 +03:00
cd bazel-zig-cc; ../bazel run --toolchain_resolution_debug=true \
--platforms @com_github_ziglang_zig//:platform_linux-x86_64-gnu \
//test:gognu