Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin Wasmer version to prevent test failures #4203

Merged
merged 3 commits into from
Feb 3, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions utils/update_checkout/update-checkout-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@
"swift-tools-support-core": "main",
"swiftpm": "main",
"swift-argument-parser": "1.0.1",
"swift-atomics": "1.0.2",
"swift-collections": "1.0.1",
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something's changed upstream that made these projects required now, their lack causes a build breakage.

"swift-crypto": "1.1.5",
"swift-driver": "main",
"swift-syntax": "main",
Expand Down
2 changes: 1 addition & 1 deletion utils/webassembly/linux/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ cd $SWIFT_PATH
# FIXME: Wasmer doesn't support linux-aarch64, consider using a different WASI-compatible runtime.
if [ "$(uname -m)" != "aarch64" ]; then
if [ ! -e ~/.wasmer/bin/wasmer ]; then
curl https://get.wasmer.io -sSfL | sh
curl https://get.wasmer.io -sSfL | sh -s "2.1.1"
fi
fi

Expand Down
2 changes: 1 addition & 1 deletion utils/webassembly/macos/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ brew install cmake ninja llvm sccache

# Install latest wasmer
if [ ! -e ~/.wasmer/bin/wasmer ]; then
curl https://get.wasmer.io -sSfL | sh
curl https://get.wasmer.io -sSfL | sh -s "2.1.1"
fi

SOURCE_PATH="$(cd "$(dirname $0)/../../../../" && pwd)"
Expand Down