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

Upgrading versions of snarkvm #884

Merged
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
8c581a3
Upgrading versions of snarkvm
Pauan May 16, 2024
c942fe3
rustfmt
Pauan May 16, 2024
02699e7
Updating version of rustc for GitHub Actions
Pauan May 16, 2024
ae42edc
Updating program unit tests
Pauan May 16, 2024
d2fb6ed
Fixing testnet URL
Pauan May 18, 2024
15f992d
Adding in unit test for TransferPublicVerifier
Pauan May 18, 2024
640a96d
Updating parsing unit test
Pauan May 21, 2024
9cdf89a
Updating snarkVM commit
Pauan Jun 13, 2024
35ac474
Fixing unit test
Pauan Jun 13, 2024
aea94ab
Temporarily disabling some unit tests
Pauan Jun 13, 2024
1465b96
Splitting into multiple unit tests
Pauan Jun 13, 2024
b2aa170
Temporarily disabling broken tests
Pauan Jun 13, 2024
cbc3421
rustfmt
Pauan Jun 13, 2024
981f16c
Fixing throttling issues with AWS
Pauan Jun 14, 2024
3ae22c2
Fixing some warnings
Pauan Jun 14, 2024
e2a38d8
Removing temporary test
Pauan Jun 14, 2024
5044c76
Updating URLs
Pauan Jun 18, 2024
7abefee
Revert "Updating URLs"
Pauan Jun 19, 2024
771d559
Updating URLs
Pauan Jun 19, 2024
05266f1
Updating URLs
Pauan Jun 19, 2024
1ef7ab5
rustfmt
Pauan Jun 19, 2024
32006a2
Updating URLs
Pauan Jun 19, 2024
a782365
Combining tests to remove unnecessary fetches
Pauan Jun 19, 2024
57de7e2
Fixing unit test
Pauan Jun 19, 2024
89d79fa
Updating URL
Pauan Jun 19, 2024
d4f299a
Consolidating the URL metadata into 1 location
Pauan Jun 19, 2024
fac101b
Fixing some bugs
Pauan Jun 19, 2024
d4d87de
Updating docs
Pauan Jun 19, 2024
ebd5c01
Fixing some unit tests
Pauan Jun 30, 2024
7b18c19
Removing failing unit tests
Pauan Jun 30, 2024
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/staging-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-05-24
toolchain: nightly-2024-05-14
override: true
components: rustfmt, rust-src

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-05-24
toolchain: nightly-2024-05-14
override: true
components: rustfmt, rust-src

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-05-24
toolchain: nightly-2024-05-14
Copy link
Collaborator

Choose a reason for hiding this comment

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

I think this might be able to go to nightly-latest? Opinions?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I always lock rustc to a specific version, so that way it's reproducible and consistent for everybody. If it's nightly-latest then it can cause breakage.

Note that the CI matches the version in rust-toolchain.yaml, so that way the CI will match local dev builds.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Also note that locking the version when using nightly is standard best practice.

Copy link
Collaborator

Choose a reason for hiding this comment

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

Agreed

override: true
components: rustfmt, rust-src

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2023-05-24"
channel = "nightly-2024-05-14"
components = [ "rust-std", "rust-src" ]
targets = [ "wasm32-unknown-unknown" ]
Loading
Loading