Skip to content
Draft
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
6 changes: 3 additions & 3 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ env:
# Anchor CLI 0.29 uses old `time` which doesn’t compile with new Rust.
# Because of that, we limit the stable Rust version to 1.79.
RUST_STABLE_VERSION: 1.79
SOLANA_VERSION: v1.17.7
ANCHOR_VERSION: 0.29.0
SOLANA_VERSION: v1.18.16
ANCHOR_VERSION: 0.30.1

jobs:
misc:
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
run: yarn global add ts-mocha typescript

- name: Anchor Build (with mocks)
run: anchor build -- --features=mocks
run: anchor build --no-idl -- --features=mocks

- name: Anchor Test
run: anchor test --skip-build
Expand Down
11 changes: 5 additions & 6 deletions Anchor.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[toolchain]

[features]
seeds = false
resolution = true
skip-lint = false

[programs.devnet]
Expand All @@ -14,14 +16,11 @@ solana_ibc = "2HLLVco5HvwWriNbUhmVwA2pCetRkpgrqwnjcsZdyTKT"
url = "https://api.apr.dev"

[provider]
cluster = "localnet"
cluster = "Localnet"
wallet = "~/.config/solana/id.json"

[workspace]
members = [
"solana/restaking/programs/restaking",
"solana/solana-ibc/programs/solana-ibc"
]
members = ["solana/restaking/programs/restaking", "solana/solana-ibc/programs/solana-ibc"]

[scripts]
test = "./solana-test.sh"
Expand Down
Loading