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

fix: Steel CLI requires solana keypair at root #331

Merged
merged 7 commits into from
Nov 27, 2024
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
6 changes: 4 additions & 2 deletions .github/workflows/steel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ jobs:
chmod +x build_and_test.sh

- name: Setup Solana stable
uses: heyAyushh/setup-solana@v5.4
uses: heyAyushh/setup-solana@v5.5
with:
solana-cli-version: stable
- name: Build and Test with Stable
Expand All @@ -264,10 +264,11 @@ jobs:
source build_and_test.sh
solana -V
rustc -V
solana-keygen new --no-bip39-passphrase
process_projects "stable"
sccache --show-stats
- name: Setup Solana 1.18.17
uses: heyAyushh/setup-solana@v5.4
uses: heyAyushh/setup-solana@v5.5
heyAyushh marked this conversation as resolved.
Show resolved Hide resolved
with:
solana-cli-version: 1.18.17
- name: Build and Test with 1.18.17
Expand All @@ -278,6 +279,7 @@ jobs:
source build_and_test.sh
solana -V
rustc -V
solana-keygen new --no-bip39-passphrase --force
heyAyushh marked this conversation as resolved.
Show resolved Hide resolved
process_projects "1.18.17"
sccache --show-stats

Expand Down
4 changes: 2 additions & 2 deletions basics/hello-solana/steel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ keywords = ["solana"]
[workspace.dependencies]
bytemuck = "1.14"
num_enum = "0.7"
solana-program = "1.18"
steel = "2.0"
solana-program = "=2.0.13"
steel = "=2.1.1"
thiserror = "1.0"
solana-sdk = "1.18"
4 changes: 2 additions & 2 deletions basics/hello-solana/steel/program/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ edition = "2021"
crate-type = ["cdylib", "lib"]

[dependencies]
solana-program = "2.0.13"
steel = "1.3.0"
solana-program = "=2.0.13"
steel = "=2.1.1"
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"suspicious": {
"noExplicitAny": "off",
"noAssignInExpressions": "warn",
"noExportsInTest": "warn"
"noExportsInTest": "warn",
"noShadowRestrictedNames": "off"
},
"style": {
"noParameterAssign": "warn",
Expand Down
Loading