Skip to content

Commit 21e72b3

Browse files
committed
bugfix: Add echos
1 parent d737fef commit 21e72b3

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,19 @@ jobs:
5757
- uses: coursier/[email protected]
5858
with:
5959
apps: ""
60-
61-
- run: .github/scripts/build-linux-aarch64.sh
62-
60+
- run: |
61+
set -euv
62+
mkdir -p artifacts
63+
mkdir -p utils
64+
cp "$(cs get https://github.com/coursier/coursier/releases/download/v2.0.16/cs-aarch64-pc-linux)" utils/cs
65+
chmod +x utils/cs
66+
cp "./.github/scripts/build-linux-aarch64-from-docker.sh" utils/
67+
docker run --rm \
68+
--volume ".:/data" \
69+
-w /data \
70+
-e "CI=$CI" \
71+
ubuntu:20.04 \
72+
echo "Hello world!"
6373
- uses: actions/[email protected]
6474
with:
6575
name: linux-launcher

0 commit comments

Comments
 (0)