diff options
author | Klaus T. Aehlig <aehlig@linta.de> | 2024-02-05 11:46:34 +0100 |
---|---|---|
committer | Klaus T. Aehlig <aehlig@linta.de> | 2024-02-05 16:24:18 +0100 |
commit | b20171a41a97dbfd75a98955694eb9df5314ef27 (patch) | |
tree | 1be0e4d5ecaf0bec2e5b198da3d9ff1c3aea0d0d /test/end-to-end/remote-execution/large-blobs.sh | |
parent | d71277e0a0b6ad60b6ecce4382b7f7f3e35c3282 (diff) | |
download | justbuild-b20171a41a97dbfd75a98955694eb9df5314ef27.tar.gz |
end-to-end tests: inherit path
... for test actions, by setting an appropriate local launcher. In
this way, the tests can also be run on systems where sh does not
pull in enough paths to have all the "usual" tools available.
Diffstat (limited to 'test/end-to-end/remote-execution/large-blobs.sh')
-rw-r--r-- | test/end-to-end/remote-execution/large-blobs.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/end-to-end/remote-execution/large-blobs.sh b/test/end-to-end/remote-execution/large-blobs.sh index 21804977..a338825a 100644 --- a/test/end-to-end/remote-execution/large-blobs.sh +++ b/test/end-to-end/remote-execution/large-blobs.sh @@ -55,7 +55,8 @@ run_tests() { echo echo Upload and download to $NAME $TYPE CAS. echo - "${JUST}" build test $BUILD_ARGS --dump-artifacts result + "${JUST}" build -L '["env", "PATH='"${PATH}"'"]' $BUILD_ARGS \ + --dump-artifacts result echo SUCCESS local ARTIFACT_ID="$(cat result | jq -r '."out.file".id')" |