Skip to content

Commit af429ed

Browse files
authored
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 <[email protected]>
1 parent 95e3c2c commit af429ed

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

ci/download-workflow-artifacts.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ for A in $ARTIFACTS; do
4343
if [ "${NAME}" = "dist-ubuntu-latest" ]; then
4444
continue
4545
fi
46+
# Exclude the 32-bit Windows artifact in favor of the 64-bit one. This helps
47+
# ensure the identically-named 32-bit tarfile doesn't overwrite the 64-bit
48+
# one below. See:
49+
# - https://github.com/WebAssembly/wasi-sdk/issues/326
50+
if [ "${NAME}" = "dist-windows-latest-x86" ]; then
51+
continue
52+
fi
4653
>&2 echo "===== Downloading: ${TO} ====="
4754

4855
# Download the artifacts to the temporary directory.

0 commit comments

Comments
 (0)