Skip to content

Commit c6a2eb9

Browse files
authored
bump: remote executor anchor version (#2329)
* do it * do it * clean * bpf->sbf * clean up
1 parent a9a8e5d commit c6a2eb9

File tree

12 files changed

+2368
-1101
lines changed

12 files changed

+2368
-1101
lines changed

.github/workflows/ci-pre-commit.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
toolchain: 1.82.0
2424
- name: Install Rust versions
2525
run: |
26-
rustup install 1.66.1
2726
rustup install 1.73.0
2827
- name: Install protoc
2928
uses: arduino/setup-protoc@v3

.github/workflows/ci-remote-executor.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@ jobs:
1515
- uses: actions-rs/toolchain@v1
1616
with:
1717
profile: minimal
18-
toolchain: 1.66.1
18+
toolchain: 1.73.0
1919
components: rustfmt, clippy
2020
override: true
2121
- name: Install Solana
2222
run: |
23-
wget http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb
24-
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb
25-
sh -c "$(curl -sSfL https://release.solana.com/v1.14.18/install)"
23+
sh -c "$(curl -sSfL https://release.solana.com/v1.18.23/install)"
2624
echo "/home/runner/.local/share/solana/install/active_release/bin" >> $GITHUB_PATH
2725
- name: Run executor tests
28-
run: cargo test-bpf --manifest-path ./governance/remote_executor/Cargo.toml
26+
run: cargo test-sbf --manifest-path ./governance/remote_executor/Cargo.toml

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ repos:
3939
- id: cargo-fmt-remote-executor
4040
name: Cargo format for remote executor
4141
language: "rust"
42-
entry: cargo +1.66.1 fmt --manifest-path ./governance/remote_executor/Cargo.toml --all
42+
entry: cargo +1.73.0 fmt --manifest-path ./governance/remote_executor/Cargo.toml --all
4343
pass_filenames: false
4444
files: governance/remote_executor
4545
- id: cargo-clippy-remote-executor
4646
name: Cargo clippy for remote executor
4747
language: "rust"
48-
entry: cargo +1.66.1 clippy --manifest-path ./governance/remote_executor/Cargo.toml --tests -- --deny warnings
48+
entry: cargo +1.73.0 clippy --manifest-path ./governance/remote_executor/Cargo.toml --tests -- --deny warnings
4949
pass_filenames: false
5050
files: governance/remote_executor
5151
# Hooks for cosmwasm contract

0 commit comments

Comments
 (0)