nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 28 lines 991 B view raw
1diff --git a/compile.sh b/compile.sh 2index 4712355d48..feec286704 100755 3--- a/compile.sh 4+++ b/compile.sh 5@@ -76,6 +76,13 @@ bazel_build "src:bazel_nojdk${EXE_EXT}" \ 6 --host_platform=@platforms//host \ 7 --platforms=@platforms//host \ 8 || fail "Could not build Bazel" 9+ 10+bazel_build src/tools/execlog:parser_deploy.jar \ 11+ --action_env=PATH \ 12+ --host_platform=@platforms//host \ 13+ --platforms=@platforms//host \ 14+ || fail "Could not build parser_deploy.jar" 15+ 16 bazel_bin_path="$(get_bazel_bin_path)/src/bazel_nojdk${EXE_EXT}" 17 [ -e "$bazel_bin_path" ] \ 18 || fail "Could not find freshly built Bazel binary at '$bazel_bin_path'" 19@@ -84,5 +91,8 @@ cp -f "$bazel_bin_path" "output/bazel${EXE_EXT}" \ 20 chmod 0755 "output/bazel${EXE_EXT}" 21 BAZEL="$(pwd)/output/bazel${EXE_EXT}" 22 23+cp "$(get_bazel_bin_path)/src/tools/execlog/parser_deploy.jar" output/ \ 24+ || fail "Could not copy 'parser_deploy.jar' to 'output/" 25+ 26 clear_log 27 display "Build successful! Binary is here: ${BAZEL}" 28