Skip to content
Open
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
7 changes: 0 additions & 7 deletions .github/.ghaignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
# build and test error
basics/realloc/native
basics/cross-program-invocation/native

# bankrun runtime rejects an instruction the current build-sbf toolchain emits
basics/favorites/native

# uses generated client from shank, can't rewrite to solana-bankrun
tools/shank-and-solita/native

Expand Down
7 changes: 3 additions & 4 deletions basics/cross-program-invocation/native/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"scripts": {
"test": "pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/test.ts",
"build-and-test": "cargo build-sbf --sbf-out-dir=./tests/fixtures --manifest-path=programs/lever/Cargo.toml && cargo build-sbf --sbf-out-dir=./tests/fixtures --manifest-path=programs/hand/Cargo.toml && pnpm test",
"build": "cargo build-sbf --sbf-out-dir=./program/target/so",
"build": "cargo build-sbf --sbf-out-dir=./target/so --manifest-path=programs/lever/Cargo.toml && cargo build-sbf --sbf-out-dir=./target/so --manifest-path=programs/hand/Cargo.toml",
"deploy": "solana program deploy ./program/target/so/program.so"
},
"dependencies": {
Expand All @@ -15,11 +15,10 @@
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.4",
"@types/node": "^22.19.1",
"mocha": "^9.0.3",
"ts-mocha": "^10.0.0",
"typescript": "^4.3.5"
"typescript": "^5.5.0"
}
}
Loading
Loading