We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d737fef commit 21e72b3Copy full SHA for 21e72b3
.github/workflows/ci.yml
@@ -57,9 +57,19 @@ jobs:
57
- uses: coursier/[email protected]
58
with:
59
apps: ""
60
-
61
- - run: .github/scripts/build-linux-aarch64.sh
62
+ - run: |
+ set -euv
+ 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!"
73
- uses: actions/[email protected]
74
75
name: linux-launcher
0 commit comments