mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 11:32:09 +00:00
82f25bacf2
* most issues resolved * fuzz wrapper fixes * more deepsource * more shell * export * shell * combine func params, fix go deep source issues Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.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 heremtic build.
|
|
|
|
env -i \
|
|
PATH=/usr/bin:/bin \
|
|
HOME="$HOME" \
|
|
GOOGLE_APPLICATION_CREDENTIALS="$GOOGLE_APPLICATION_CREDENTIALS" \
|
|
bazel "$@"
|