mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-21 11:10:36 +00:00
14d7416c16
* Spec test report hack * no export * fix shell complaint * shell fix? * shell again? * chmod +x ./hack/spectest-report.sh * Review + improvements * Remove unwanted change * Add exclusion list * Fix path + add eip6110 to exclusion * Fix bazel path nonsense * Add extra detail about specific test * Cleanup exclusion list * Add fail conditions * Add mkdir * Shorten filename + mkdir only if new * Fix names * Add to exclusion list * Add report to .gitignore * Back to stupid names * Add Bazel flags option --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
12 lines
378 B
Bash
Executable File
12 lines
378 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script serves as a wrapper around bazel to limit the scope of environment variables that
|
|
# may change the action output. Using this script should result in a higher cache hit ratio for
|
|
# cached actions with a more hermetic build.
|
|
|
|
env -i \
|
|
PATH=/usr/bin:/bin \
|
|
HOME="$HOME" \
|
|
GOOGLE_APPLICATION_CREDENTIALS="$GOOGLE_APPLICATION_CREDENTIALS" \
|
|
bazel "$@"
|