Skip to content

Commit 3c5c6c6

Browse files
authored
solana: add make commands (#121)
Co-authored-by: A5 Pickle <a5-pickle@users.noreply.github.com>
1 parent 88aa397 commit 3c5c6c6

File tree

5 files changed

+35
-14
lines changed

5 files changed

+35
-14
lines changed

.github/workflows/solana.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,25 @@ jobs:
4141
- name: make lint
4242
run: make lint
4343
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
4460
make-anchor-test:
4561
name: make anchor-test
4662
runs-on: ubuntu-latest
47-
# Anchor Docker image: https://www.anchor-lang.com/docs/verifiable-builds#images
48-
# container: backpackapp/build:v0.30.0
4963
steps:
5064
- uses: actions/checkout@v4
5165
- uses: metadaoproject/setup-anchor@v2

solana/Makefile

+13-4
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,23 @@ ifdef BUILD_$(NETWORK)
4545
cp target/deploy/*.so $(BUILD_$(NETWORK))/
4646
endif
4747

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)
5250
anchor build --no-idl -- --features testnet
5351
cp target/deploy/matching_engine.so ts/tests/artifacts/new_testnet_matching_engine.so
5452
cp target/deploy/token_router.so ts/tests/artifacts/new_testnet_token_router.so
5553
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
5665
bash sh/run_anchor_test.sh
5766

5867
.PHONY: clippy

solana/sh/run_anchor_test.sh

-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ fi
1212
rm -rf .anchor/test-ledger
1313
mkdir -p .anchor
1414

15-
anchor build -- --features integration-test
16-
1715
### Start up the validator.
1816
echo "Starting solana-test-validator"
1917

solana/target/idl/token_router.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1136,11 +1136,11 @@
11361136
},
11371137
{
11381138
"code": 6522,
1139-
"name": "TooManyAuthorities"
1139+
"name": "MissingAuthority"
11401140
},
11411141
{
1142-
"code": 6524,
1143-
"name": "MissingAuthority"
1142+
"code": 6523,
1143+
"name": "TooManyAuthorities"
11441144
},
11451145
{
11461146
"code": 7024,

solana/target/types/token_router.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1142,11 +1142,11 @@ export type TokenRouter = {
11421142
},
11431143
{
11441144
"code": 6522,
1145-
"name": "tooManyAuthorities"
1145+
"name": "missingAuthority"
11461146
},
11471147
{
1148-
"code": 6524,
1149-
"name": "missingAuthority"
1148+
"code": 6523,
1149+
"name": "tooManyAuthorities"
11501150
},
11511151
{
11521152
"code": 7024,

0 commit comments

Comments
 (0)