2019-12-27 11:07:53 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set +u
|
|
|
|
|
|
|
|
if [[ $BUILDKITE_LABEL =~ ":selenium:" ]];
|
|
|
|
then
|
2020-01-07 01:19:09 +00:00
|
|
|
echo "--- :twisted_rightwards_arrows::desktop_computer: Downloading build artifacts"
|
|
|
|
buildkite-agent artifact download "dist.tar.zst" .
|
|
|
|
buildkite-agent artifact download "web.tar.zst" .
|
2019-12-27 11:07:53 +00:00
|
|
|
echo "--- :go::node: Extracting build artifacts"
|
2020-01-07 01:19:09 +00:00
|
|
|
tar xf dist.tar.zst
|
|
|
|
tar xf web.tar.zst
|
2019-12-27 11:07:53 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $BUILDKITE_LABEL =~ ":docker: Deploy Image" ]];
|
|
|
|
then
|
2020-01-05 14:31:33 +00:00
|
|
|
buildkite-agent artifact download "authelia-image-${ARCH}*" .
|
2020-01-06 23:12:37 +00:00
|
|
|
zstdcat authelia-image-"${ARCH}".tar.zst | docker load
|
2019-12-27 11:07:53 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $BUILDKITE_LABEL == ":github: Deploy Artifacts" ]];
|
|
|
|
then
|
|
|
|
buildkite-agent artifact download "authelia-linux-*" .
|
|
|
|
fi
|