exclude 32-bit Windows artifact in download-workflow-artifacts.sh (#417)

This helps ensure the identically-named 32-bit tarfile doesn't overwrite the
64-bit one when we extract everything into a single directory.

I'll follow this up by making an updated wasi-sdk-22.0.m-mingw.tar.gz and adding
it to the wasi-sdk-22 release.

Fixes #326

Signed-off-by: Joel Dice <joel.dice@fermyon.com>
pull/418/head
Joel Dice 8 months ago committed by GitHub
parent 95e3c2c6c7
commit af429ed157
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -43,6 +43,13 @@ for A in $ARTIFACTS; do
if [ "${NAME}" = "dist-ubuntu-latest" ]; then
continue
fi
# Exclude the 32-bit Windows artifact in favor of the 64-bit one. This helps
# ensure the identically-named 32-bit tarfile doesn't overwrite the 64-bit
# one below. See:
# - https://github.com/WebAssembly/wasi-sdk/issues/326
if [ "${NAME}" = "dist-windows-latest-x86" ]; then
continue
fi
>&2 echo "===== Downloading: ${TO} ====="
# Download the artifacts to the temporary directory.

Loading…
Cancel
Save