Skip to content

Commit f6c3aef

Browse files
committed
up
1 parent 1c0e439 commit f6c3aef

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,13 @@ jobs:
3838
gcc-powerpc64le-linux-gnu g++-powerpc64le-linux-gnu \
3939
gcc-s390x-linux-gnu g++-s390x-linux-gnu
4040
- name: Get musl cross-compilers
41+
# run: |
42+
# for musl_arch in x86_64 aarch64 riscv64; do
4143
run: |
42-
for musl_arch in x86_64 aarch64 riscv64; do
44+
for musl_arch in aarch64; do
4345
# We use a musl.cc mirror, see https://github.com/orgs/community/discussions/27906.
4446
musl_cc_url="https://github.com/jonatanklosko/musl_cc_mirror/releases/download/20250915-100603"
45-
wget "${musl_cc_url}/${musl_arch}-linux-musl-cross.tgz" -O "${musl_arch}-linux-musl-cross.tgz"
47+
wget "${musl_cc_url}/${musl_arch}-linux-musl-cross.tgz" -O "${musl_arch}-linux-musl-cross.tgz" -q --show-progress
4648
tar -xf "${musl_arch}-linux-musl-cross.tgz"
4749
4850
echo "$(pwd)/${musl_arch}-linux-musl-cross/bin" >> $GITHUB_PATH
@@ -57,6 +59,11 @@ jobs:
5759
mkdir -p "${ELIXIR_MAKE_CACHE_DIR}"
5860
mix deps.get
5961
mix elixir_make.precompile
62+
# TODO remove
63+
- uses: actions/upload-artifact@v4
64+
with:
65+
name: playwright-report
66+
path: cache/*.tar.gz
6067
# - uses: softprops/action-gh-release@v2
6168
# if: startsWith(github.ref, 'refs/tags/')
6269
# with:

0 commit comments

Comments
 (0)