File tree 5 files changed +9
-5125
lines changed
5 files changed +9
-5125
lines changed Original file line number Diff line number Diff line change @@ -121,9 +121,6 @@ jobs:
121
121
- name : Set default Rust toolchain
122
122
run : rustup default stable
123
123
working-directory : ./solana
124
- - name : yarn
125
- run : yarn
126
- working-directory : ./solana
127
124
- name : anchor test --arch sbf
128
125
run : make anchor-test
129
126
working-directory : ./solana
Original file line number Diff line number Diff line change 5
5
** /* .rs.bk
6
6
node_modules
7
7
test-ledger
8
- .yarn
Original file line number Diff line number Diff line change @@ -30,10 +30,7 @@ address = "worm2ZoG2kUd4vFXhvjh93UUH596ayRfgQ2MgjNMTth"
30
30
program = " programs/example-native-token-transfers/tests/fixtures/mainnet_core_bridge.so"
31
31
32
32
[test .validator ]
33
- bind_address = " 0.0.0.0"
34
33
url = " https://api.mainnet-beta.solana.com"
35
- ledger = " .anchor/test-ledger"
36
- rpc_port = 8899
37
34
ticks_per_slot = 16
38
35
39
36
[[test .validator .account ]]
Original file line number Diff line number Diff line change @@ -12,5 +12,13 @@ target/idl/example_native_token_transfers.json:
12
12
_anchor-build :
13
13
@anchor build
14
14
15
- anchor-test : build target/idl/example_native_token_transfers.json
15
+ anchor-test : node_modules build target/idl/example_native_token_transfers.json
16
16
anchor test --skip-build
17
+
18
+ node_modules :
19
+ npm ci
20
+
21
+ .PHONY : clean
22
+ clean :
23
+ anchor clean
24
+ rm -rf .anchor node_modules
You can’t perform that action at this time.
0 commit comments