diff options
author | Tomeu Vizoso <[email protected]> | 2020-03-24 12:58:30 +0100 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-13 21:46:40 +0000 |
commit | 78a1deb958f7724094c4071ad0a685bc4297b200 (patch) | |
tree | b0a42862cc248235b0a4d8b2a6ea17cf05172ad1 /.gitlab-ci/piglit | |
parent | 9d50c53e474cede8d42641fa588132a539204e1d (diff) |
gitlab-ci: Place files from the Mesa repo into the build tarball
There's some files from the .gitlab-ci directory that are needed in the
test stage and that, because the Mesa repository isn't checked out in
that stage, need to be made available through other means.
Because those files are going to be needed in LAVA devices, place them
ino the tarball containing the built files so it's available to both
gitlab-ci runners and LAVA devices.
Before those files were passed in the artifacts of the Gitlab CI job,
but this commit places them into the built tarball so scripts later in
the pipeline don't need to account for this discrepancy.
Signed-off-by: Tomeu Vizoso <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
(cherry picked from commit 92f3c51560f9eb2387b1d929f694244c0b7bd577)
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4462>
Diffstat (limited to '.gitlab-ci/piglit')
-rwxr-xr-x | .gitlab-ci/piglit/run.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci/piglit/run.sh b/.gitlab-ci/piglit/run.sh index 9b40e997388..e834cb4e978 100755 --- a/.gitlab-ci/piglit/run.sh +++ b/.gitlab-ci/piglit/run.sh @@ -3,7 +3,7 @@ set -e set -o xtrace -VERSION=`cat artifacts/VERSION` +VERSION=`cat install/VERSION` cd /piglit @@ -15,7 +15,7 @@ xvfb-run --server-args="-noreset" sh -c \ PIGLIT_RESULTS=${PIGLIT_RESULTS:-$PIGLIT_PROFILES} mkdir -p .gitlab-ci/piglit -cp $OLDPWD/artifacts/piglit/$PIGLIT_RESULTS.txt .gitlab-ci/piglit/$PIGLIT_RESULTS.txt.baseline +cp $OLDPWD/install/piglit/$PIGLIT_RESULTS.txt .gitlab-ci/piglit/$PIGLIT_RESULTS.txt.baseline ./piglit summary console $OLDPWD/results | head -n -1 | grep -v ": pass" >.gitlab-ci/piglit/$PIGLIT_RESULTS.txt if diff -q .gitlab-ci/piglit/$PIGLIT_RESULTS.txt{.baseline,}; then |