1
Fork 0
hermetic_cc_toolchain/.build.yml

43 lines
1.7 KiB
YAML
Raw Normal View History

2021-06-08 06:30:06 +03:00
image: debian/testing
packages:
- curl
2021-06-10 18:51:59 +03:00
- file
2021-06-08 06:30:06 +03:00
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: |
2021-06-19 12:14:19 +03:00
sudo apt-get purge gcc -y && sudo apt-get autoremove -y
2021-06-08 06:30:06 +03:00
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
- test_default: |
2021-06-19 16:45:33 +03:00
cd bazel-zig-cc; ./build-and-file \
//test:hello | \
grep -q "ELF 64-bit.* x86-64.* dynamically linked"
2021-06-10 16:09:50 +03:00
- test_x86_64-linux-gnu: |
2021-06-19 16:45:33 +03:00
cd bazel-zig-cc; ./build-and-file \
--platforms @zig_sdk//:x86_64-linux-gnu //test:hello | \
grep -q "ELF 64-bit.* x86-64.* dynamically linked"
2021-06-10 16:09:50 +03:00
- test_x86_64-linux-musl: |
2021-06-19 16:45:33 +03:00
cd bazel-zig-cc; ./build-and-file \
--extra_toolchains @zig_sdk//:x86_64-linux-musl_toolchain //test:hello | \
grep -q "ELF 64-bit.* x86-64.* statically linked"
2021-06-10 16:09:50 +03:00
- test_aarch64-linux-gnu: |
2021-06-19 16:45:33 +03:00
cd bazel-zig-cc; ./build-and-file \
--platforms @zig_sdk//:aarch64-linux-gnu //test:hello | \
grep -q "ELF 64-bit.* ARM aarch64.* dynamically linked"
2021-06-10 16:09:50 +03:00
- test_aarch64-linux-musl: |
2021-06-19 16:45:33 +03:00
cd bazel-zig-cc; ./build-and-file \
--extra_toolchains @zig_sdk//:aarch64-linux-musl_toolchain //test:hello | \
grep -q "ELF 64-bit.* ARM aarch64.* statically linked"
2021-06-16 12:44:16 +03:00
- test_x86_64-macos-gnu: |
2021-06-19 16:45:33 +03:00
cd bazel-zig-cc; ./build-and-file \
--platforms @zig_sdk//:x86_64-macos-gnu //test:hello | \
grep -q "Mach-O 64-bit x86_64 executable"
2021-06-16 12:44:16 +03:00
- test_aarch64-macos-gnu: |
2021-06-19 16:45:33 +03:00
cd bazel-zig-cc; ./build-and-file \
--platforms @zig_sdk//:aarch64-macos-gnu //test:hello | \
grep -q "Mach-O 64-bit arm64 executable"