From 1bfa7fc3bc3a5c05678c9770c5590b1c6d197ca8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Mon, 21 Nov 2022 07:06:49 +0200 Subject: [PATCH] build: add warmup step --- .build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.build.yml b/.build.yml index 171a94e..8e03819 100644 --- a/.build.yml +++ b/.build.yml @@ -12,7 +12,11 @@ triggers: tasks: - setup: | sudo apt-get purge gcc -y && sudo apt-get autoremove -y - - llvm14: | + - warmup: + cd test-zigcc; . .envrc + bazel --batch build --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux //:zigzag-0 + bazel --batch build --platforms=@zig_sdk//libc_aware/platform:linux_amd64_gnu.2.28 //:zigzag-0 + - llvm14-baseline: | cd test-zigcc; . .envrc bazel clean; bazel --batch build --extra_toolchains=@llvm_toolchain//:cc-toolchain-x86_64-linux ... - zig_cc-no_sandbox: |