Skip to content

Commit

Permalink
bugfix: Add echos
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Nov 13, 2023
1 parent d737fef commit 73ba723
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/scripts/build-linux-aarch64.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,21 @@ set -euv
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)"

mkdir -p artifacts
echo $DIR
mkdir -p utils
echo "utils"
cp "$(cs get https://github.com/coursier/coursier/releases/download/v2.0.16/cs-aarch64-pc-linux)" utils/cs
echo "got cs"
chmod +x utils/cs

echo "added +x"
cp "$DIR/build-linux-aarch64-from-docker.sh" utils/
echo "running docker scrupt"

docker run $(if test -t 1; then echo "-it"; fi) --rm \
--volume "$(pwd):/data" \
-w /data \
-e "CI=$CI" \
ubuntu:20.04 \
/data/utils/build-linux-aarch64-from-docker.sh

echo "end"

0 comments on commit 73ba723

Please sign in to comment.