-
Notifications
You must be signed in to change notification settings - Fork 824
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into feature/serialization-of-wasi-state
- Loading branch information
Showing
68 changed files
with
2,718 additions
and
545 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,15 @@ | |
# Wasm-bindgen template: https://github.com/rustwasm/wasm-bindgen/blob/master/ci/azure-install-rust.yml | ||
|
||
steps: | ||
# - bash: | | ||
# set -ex | ||
# brew install [email protected] curl | ||
# brew link [email protected] --force | ||
# echo "##vso[task.prependpath]/usr/local/opt/openssl/bin" | ||
# echo "##vso[task.setvariable variable=LDFLAGS;]-L/usr/local/opt/openssl/lib" | ||
# echo "##vso[task.setvariable variable=CPPFLAGS;]-I/usr/local/opt/openssl/include" | ||
# displayName: "Fix Cargo SSL (macOS)" | ||
# condition: eq(variables['Agent.OS'], 'Darwin') | ||
- bash: | | ||
set -ex | ||
if [ -x "`command -v rustup`" ]; then | ||
|
@@ -15,24 +24,24 @@ steps: | |
echo "##vso[task.prependpath]$HOME/.cargo/bin" | ||
fi | ||
displayName: "Install Rust (Linux, macOS)" | ||
condition: not(eq(variables['Agent.OS'], 'Windows_NT')) | ||
condition: ne(variables['Agent.OS'], 'Windows_NT') | ||
- bash: | | ||
set -ex | ||
if [ -x "`command -v rustup`" ]; then | ||
echo `command -v rustup` `rustup -V` installed | ||
else | ||
choco install rust -y | ||
# curl -sSf -o rustup-init.exe https://win.rustup.rs | ||
# ./rustup-init.exe -y --default-toolchain $RUST_TOOLCHAIN | ||
# echo "##vso[task.prependpath]$USERPROFILE/.cargo/bin" | ||
fi | ||
displayName: "Install Rust (Windows)" | ||
condition: eq(variables['Agent.OS'], 'Windows_NT') | ||
# - bash: | | ||
# set -ex | ||
# if [ -x "`command -v rustup`" ]; then | ||
# echo `command -v rustup` `rustup -V` installed | ||
# else | ||
# choco install rust -y | ||
# # curl -sSf -o rustup-init.exe https://win.rustup.rs | ||
# # ./rustup-init.exe -y --default-toolchain $RUST_TOOLCHAIN | ||
# # echo "##vso[task.prependpath]$USERPROFILE/.cargo/bin" | ||
# fi | ||
# displayName: "Install Rust (Windows)" | ||
# condition: eq(variables['Agent.OS'], 'Windows_NT') | ||
|
||
- bash: | | ||
set -ex | ||
rustup update $RUST_TOOLCHAIN | ||
rustup update --no-self-update $RUST_TOOLCHAIN | ||
rustup default $RUST_TOOLCHAIN | ||
rustc -Vv | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.