diff options
author | Eric Anholt <[email protected]> | 2020-06-08 15:36:16 -0700 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-06-12 23:34:44 +0000 |
commit | 72fe7b98eaff90e1ca5e10691f983f5d891118be (patch) | |
tree | 5a18c88e0f57a2b7c17bbc61e7ed09b3423c37c9 /.gitlab-ci/bare-metal/google-power-up.sh | |
parent | 109816b518327ec5ef4ee2b19234c9a6472c2c8b (diff) |
ci/bare-metal: Stop fetching the git tree.
Like for LAVA, make the tradeoff of moving the test scripts and data (55k)
into the artifacts in order to make the per-build jobs not have to pull
down the git tree (hundreds of MB when you don't hit a cached container
for your specific user, which I see happen multiple times a day in my CI
runs).
To do this, we have to be a bit more careful in some places about our
working directory potentially being dirty.
Reviewed-by: Christian Gmeiner <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5393>
Diffstat (limited to '.gitlab-ci/bare-metal/google-power-up.sh')
-rwxr-xr-x | .gitlab-ci/bare-metal/google-power-up.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci/bare-metal/google-power-up.sh b/.gitlab-ci/bare-metal/google-power-up.sh index 6f44c72b660..f0c054162a2 100755 --- a/.gitlab-ci/bare-metal/google-power-up.sh +++ b/.gitlab-ci/bare-metal/google-power-up.sh @@ -7,6 +7,6 @@ if [ -z "$relay" ]; then exit 1 fi -$CI_PROJECT_DIR/.gitlab-ci/bare-metal/google-power-relay.py off $relay +$CI_PROJECT_DIR/install/bare-metal/google-power-relay.py off $relay sleep 5 -$CI_PROJECT_DIR/.gitlab-ci/bare-metal/google-power-relay.py on $relay +$CI_PROJECT_DIR/install/bare-metal/google-power-relay.py on $relay |