File tree 5 files changed +35
-14
lines changed
5 files changed +35
-14
lines changed Original file line number Diff line number Diff line change @@ -41,11 +41,25 @@ jobs:
41
41
- name : make lint
42
42
run : make lint
43
43
working-directory : ./solana
44
+ make-anchor-build-idl :
45
+ name : make anchor-build-idl
46
+ runs-on : ubuntu-latest
47
+ steps :
48
+ - uses : actions/checkout@v4
49
+ - uses : metadaoproject/setup-anchor@v2
50
+ with :
51
+ node-version : " 20.11.0"
52
+ solana-cli-version : " 1.18.11"
53
+ anchor-version : " 0.30.0"
54
+ - name : Set default Rust toolchain
55
+ run : rustup default stable
56
+ working-directory : ./solana
57
+ - name : make anchor-build-idl
58
+ run : make anchor-build-idl
59
+ working-directory : ./solana
44
60
make-anchor-test :
45
61
name : make anchor-test
46
62
runs-on : ubuntu-latest
47
- # Anchor Docker image: https://www.anchor-lang.com/docs/verifiable-builds#images
48
- # container: backpackapp/build:v0.30.0
49
63
steps :
50
64
- uses : actions/checkout@v4
51
65
- uses : metadaoproject/setup-anchor@v2
Original file line number Diff line number Diff line change @@ -45,14 +45,23 @@ ifdef BUILD_$(NETWORK)
45
45
cp target/deploy/*.so $(BUILD_$(NETWORK))/
46
46
endif
47
47
48
- $(BUILD_$(NETWORK ) ) : cargo-test
49
-
50
- .PHONY : anchor-test
51
- anchor-test : node_modules ts/tests/artifacts $(CLONED_MAINNET_PROGRAMS )
48
+ .PHONY : anchor-test-setup
49
+ anchor-test-setup : node_modules ts/tests/artifacts $(CLONED_MAINNET_PROGRAMS )
52
50
anchor build --no-idl -- --features testnet
53
51
cp target/deploy/matching_engine.so ts/tests/artifacts/new_testnet_matching_engine.so
54
52
cp target/deploy/token_router.so ts/tests/artifacts/new_testnet_token_router.so
55
53
cp target/deploy/upgrade_manager.so ts/tests/artifacts/testnet_upgrade_manager.so
54
+ anchor build -- --features integration-test
55
+
56
+ .PHONY : anchor-build-idl
57
+ anchor-build-idl :
58
+ anchor build -- --features localnet
59
+ git diff --exit-code
60
+
61
+ $(BUILD_$(NETWORK ) ) : cargo-test
62
+
63
+ .PHONY : anchor-test
64
+ anchor-test : anchor-test-setup
56
65
bash sh/run_anchor_test.sh
57
66
58
67
.PHONY : clippy
Original file line number Diff line number Diff line change 12
12
rm -rf .anchor/test-ledger
13
13
mkdir -p .anchor
14
14
15
- anchor build -- --features integration-test
16
-
17
15
# ## Start up the validator.
18
16
echo " Starting solana-test-validator"
19
17
Original file line number Diff line number Diff line change 1136
1136
},
1137
1137
{
1138
1138
"code" : 6522 ,
1139
- "name" : " TooManyAuthorities "
1139
+ "name" : " MissingAuthority "
1140
1140
},
1141
1141
{
1142
- "code" : 6524 ,
1143
- "name" : " MissingAuthority "
1142
+ "code" : 6523 ,
1143
+ "name" : " TooManyAuthorities "
1144
1144
},
1145
1145
{
1146
1146
"code" : 7024 ,
Original file line number Diff line number Diff line change @@ -1142,11 +1142,11 @@ export type TokenRouter = {
1142
1142
} ,
1143
1143
{
1144
1144
"code" : 6522 ,
1145
- "name" : "tooManyAuthorities "
1145
+ "name" : "missingAuthority "
1146
1146
} ,
1147
1147
{
1148
- "code" : 6524 ,
1149
- "name" : "missingAuthority "
1148
+ "code" : 6523 ,
1149
+ "name" : "tooManyAuthorities "
1150
1150
} ,
1151
1151
{
1152
1152
"code" : 7024 ,
You can’t perform that action at this time.
0 commit comments