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

ci: Bump repo to Solana 1.17 #5575

Merged
merged 26 commits into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8c34d89
Update workspace for new cargo resolver, remove ntapi patch
joncinque Oct 17, 2023
0aac33d
Update Rust versions
joncinque Oct 17, 2023
dbadb5d
Update dependencies with `./update-solana-dependencies.sh 1.17.2`
joncinque Oct 17, 2023
1fb0290
Update lockfile
joncinque Oct 17, 2023
d1d83dc
Fix build errors
joncinque Oct 17, 2023
31564ab
Run clippy with `--fix`
joncinque Oct 17, 2023
4fb75ce
concurrent-merkle-tree: Fix function to not use mutable ref
joncinque Oct 17, 2023
8137aab
Replace StakeState with StakeStateV2
joncinque Oct 17, 2023
890a51f
governance: Fix clippy lint
joncinque Oct 17, 2023
baeac83
governance: Fix unnecessary mut
joncinque Oct 17, 2023
0ef11b1
Allow `clippy::items_after_module`
joncinque Oct 17, 2023
7834486
token: Make error tests clearer
joncinque Oct 17, 2023
4975739
token-2022: Fix private glob re-export
joncinque Oct 17, 2023
86b1e68
token-upgrade-cli: Replace validator with parser
joncinque Oct 17, 2023
2df1669
single-pool-cli: Fix parsers
joncinque Oct 17, 2023
b74b20e
ci: Update clippy command
joncinque Oct 17, 2023
05587d1
Update anchor version
joncinque Oct 17, 2023
c206675
token-metadata: Use `no-entrypoint` feature in token-2022
joncinque Oct 18, 2023
e069872
ci: Add protobuf-compiler to build deps
joncinque Oct 18, 2023
df6f035
discriminator-syn: *Don't* specify type of lib to build
joncinque Oct 18, 2023
be0a6e5
ci: Blast directories in cargo-build-test
joncinque Oct 18, 2023
3127bbe
account-compression: Update build and lockfile
joncinque Oct 18, 2023
4004524
Update token-group and feature-gate
joncinque Oct 18, 2023
a39f15f
single-pool: revert WrongStakeStateV2
2501babe Oct 19, 2023
d6491c0
stake-pool: revert WrongStakeStateV2
2501babe Oct 19, 2023
b9443f4
stake-pool-py: revert StakeStateV2
2501babe Oct 19, 2023
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
6 changes: 3 additions & 3 deletions .github/workflows/pull-request-account-compression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ jobs:
- name: Install dependencies
run: |
./ci/install-build-deps.sh
./ci/install-program-deps.sh
echo "$HOME/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH

- name: Build Anchor Programs
run: |
./ci/anchor-build.sh account-compression
- name: Build and test programs
run: ./ci/cargo-test-sbf.sh account-compression

- name: Upload programs
uses: actions/upload-artifact@v2
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: clippy
args: -Zunstable-options --workspace --all-targets --features test-sbf -- --deny=warnings --deny=clippy::integer_arithmetic
args: -Zunstable-options --workspace --all-targets --features test-sbf -- --deny=warnings --deny=clippy::arithmetic_side_effects

audit:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -109,6 +109,9 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Remove unneeded packages for more space
run: bash ./ci/warning/purge-ubuntu-runner.sh

- name: Set env vars
run: |
source ci/rust-version.sh
Expand Down
4 changes: 2 additions & 2 deletions Anchor.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
anchor_version = "0.28.0"
solana_version = "1.16.16"
anchor_version = "0.29.0"
solana_version = "1.17.2"

[workspace]
members = [
Expand Down
Loading
Loading