-
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.
390: pin wapm version r=MarkMcCaskey a=xmclark This PR pins the version of wapm-cli that gets distributed during releases. We can re-create the release, and will always install the same version of wapm-cli (until we update on a new wapm-cli release). Co-authored-by: Mackenzie Clark <[email protected]> Co-authored-by: Mark McCaskey <[email protected]>
- Loading branch information
Showing
4 changed files
with
11 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,7 +103,7 @@ jobs: | |
- run: | ||
name: Install Rust | ||
command: | | ||
curl https://sh.rustup.rs -sSf | sh -s -- -y | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly | ||
export PATH="$HOME/.cargo/bin:$PATH" | ||
cargo --version | ||
- run: | ||
|
@@ -153,7 +153,8 @@ jobs: | |
- run: | ||
name: "Pull dependencies" | ||
command: | | ||
git clone [email protected]:wasmerio/wapm-cli.git | ||
git submodule init | ||
git submodule update --remote | ||
- restore_cache: | ||
keys: | ||
- v8-cargo-cache-linux-nightly-{{ arch }}-{{ checksum "Cargo.lock" }} | ||
|
@@ -220,7 +221,8 @@ jobs: | |
- run: | ||
name: "Pull dependencies" | ||
command: | | ||
git clone [email protected]:wasmerio/wapm-cli.git | ||
git submodule init | ||
git submodule update --remote | ||
- restore_cache: | ||
keys: | ||
- v8-cargo-cache-darwin-nightly-{{ arch }}-{{ checksum "Cargo.lock" }} | ||
|
@@ -238,7 +240,7 @@ jobs: | |
- run: | ||
name: Install Rust | ||
command: | | ||
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain nightly-2019-04-11 | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain nightly | ||
export PATH="$HOME/.cargo/bin:$PATH" | ||
cargo --version | ||
# Use rust nightly (for singlepass, for now) | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "wapm-cli"] | ||
path = wapm-cli | ||
url = [email protected]:wasmerio/wapm-cli.git |
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