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

Upgrade to snarkVM #317

Merged
merged 19 commits into from
Jul 28, 2021
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: 1 addition & 1 deletion .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
rust:
- 1.48.0
- 1.53.0
# - nightly
steps:
- name: Checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
rust:
- 1.48.0
- 1.53.0
# - nightly
steps:
- name: Checkout
Expand All @@ -65,7 +65,7 @@ jobs:
with:
command: check
args: --examples --all-features --all
if: matrix.rust == '1.48.0' # pinned, should be removed later
if: matrix.rust == '1.53.0'

- name: Test
uses: actions-rs/cargo@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup1-cli-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
rust:
- nightly-2020-08-15
- 1.53.0
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/setup1-contributor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
rust:
- 1.48.0
- 1.53.0
# - nightly
steps:
- name: Checkout
Expand All @@ -40,7 +40,7 @@ jobs:
strategy:
matrix:
rust:
- 1.48.0
- 1.53.0
# - nightly
steps:
- name: Checkout
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
rust:
- 1.48.0
- 1.53.0
steps:
- name: Checkout
uses: actions/checkout@v2
Expand All @@ -28,10 +28,9 @@ jobs:
toolchain: ${{ matrix.rust }}
override: true

# pinned --toolchain 1.48.0 should be changed later to stable
- name: Install WASM
run: |
rustup target add wasm32-unknown-unknown --toolchain 1.48.0
rustup target add wasm32-unknown-unknown --toolchain 1.53.0
cargo install wasm-bindgen-cli
cargo update -p wasm-bindgen

Expand Down
Loading