Separate download and extract steps for reporting
parent
e97a11a9c1
commit
e4764ad2cf
|
@ -6,6 +6,7 @@ DOCKER_IMAGE=authelia/authelia
|
||||||
|
|
||||||
if [[ $BUILDKITE_COMMAND == "authelia-scripts --log-level debug ci" ]];
|
if [[ $BUILDKITE_COMMAND == "authelia-scripts --log-level debug ci" ]];
|
||||||
then
|
then
|
||||||
|
echo "--- :go::node: Saving artifacts for :chrome::selenium: Integration tests"
|
||||||
tar --zstd -cf dist.tar.zst dist
|
tar --zstd -cf dist.tar.zst dist
|
||||||
tar --zstd -cf web.tar.zst web
|
tar --zstd -cf web.tar.zst web
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -4,9 +4,12 @@ set +u
|
||||||
|
|
||||||
if [[ $BUILDKITE_LABEL =~ ":selenium:" ]];
|
if [[ $BUILDKITE_LABEL =~ ":selenium:" ]];
|
||||||
then
|
then
|
||||||
|
echo "--- :twisted_rightwards_arrows::desktop_computer: Downloading build artifacts"
|
||||||
|
buildkite-agent artifact download "dist.tar.zst" .
|
||||||
|
buildkite-agent artifact download "web.tar.zst" .
|
||||||
echo "--- :go::node: Extracting build artifacts"
|
echo "--- :go::node: Extracting build artifacts"
|
||||||
buildkite-agent artifact download "dist.tar.zst" . && tar xf dist.tar.zst
|
tar xf dist.tar.zst
|
||||||
buildkite-agent artifact download "web.tar.zst" . && tar xf web.tar.zst
|
tar xf web.tar.zst
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $BUILDKITE_LABEL =~ ":docker: Deploy Image" ]];
|
if [[ $BUILDKITE_LABEL =~ ":docker: Deploy Image" ]];
|
||||||
|
|
Loading…
Reference in New Issue