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 1812bfa
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,21 @@ jobs:
- uses: coursier/[email protected]
with:
apps: ""

- run: .github/scripts/build-linux-aarch64.sh

- name: Build Linux aarch64 launcher
run: |
set -euv
export DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" &> /dev/null && pwd)"
mkdir -p artifacts
mkdir -p utils
cp "$(cs get https://github.com/coursier/coursier/releases/download/v2.0.16/cs-aarch64-pc-linux)" utils/cs
chmod +x utils/cs
cp "$DIR/build-linux-aarch64-from-docker.sh" utils/
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
- uses: actions/[email protected]
with:
name: linux-launcher
Expand Down

0 comments on commit 1812bfa

Please sign in to comment.