Skip to content

Commit a70c93b

Browse files
authored
test: Adding test jobs github actions for anchor and solana native 💚 (#76)
* Adding test actions for anchor and solana native - works for basic programs - works with anchor -v 0.29.0 - all the native programs are now tested with solana-bankrun - all the anchor tests utilize pnpm and ts-mocha - all native programs build except realloc, cross-program-invocation native build and tests * contributing, stable support, mike review * temp fix setup-solana action * test setup-anchor with setup-solana
1 parent c283644 commit a70c93b

File tree

118 files changed

+32633
-3634
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

118 files changed

+32633
-3634
lines changed

‎.github/CONTRIBUTING.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Contribution Guidelines
2+
Thank you for considering contributing to the Solana Program Examples repository. We greatly appreciate your interest and efforts in helping us improve and expand this valuable resource for the Solana developer community.
3+
4+
We believe that a welcoming and inclusive environment fosters collaboration and encourages participation from developers of all backgrounds and skill levels.
5+
6+
To ensure a smooth and effective contribution process, please take a moment to review and follow the guidelines outlined below.
7+
8+
## How to Contribute
9+
We welcome contributions in the form of code, documentation, bug reports, feature requests, and other forms of feedback. Here are some ways you can contribute:
10+
11+
- **Code Contributions:** You can contribute code examples in Rust, Python, or Solidity that demonstrate various Solana program functionalities. You can also contribute improvements to existing examples, such as bug fixes, optimizations, or additional features.
12+
13+
- **Bug Reports, Ideas or Feedback:** If you encounter any issues or have ideas for new examples, please submit a bug report or feature request. Your feedback is valuable and helps us improve the quality and relevance of the examples.
14+
15+
## Contributing code examples:
16+
When contributing code examples, please follow these guidelines to ensure programs build and test successfully:
17+
18+
1. Use pnpm as the default package manager for the project. You can install pnpm by following the instructions [here](https://pnpm.io/installation). Commit pnpm-lock.yaml to the repository.
19+
20+
2. Tests for Solana native and Anchor programs should be written with [ts-mocha](https://github.com/piotrwitek/ts-mocha).
21+
22+
3. Tests for solana native programs should be written with [solana-bankrun](https://kevinheavey.github.io/solana-bankrun)
23+
24+
4. here are some helpful scripts to add to your `package.json` file:
25+
26+
```json
27+
"scripts": {
28+
"test": "pnpm ts-mocha -p ./tests/tsconfig.test.json -t 1000000 ./tests/realloc.test.ts",
29+
"build-and-test": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./tests/fixtures && pnpm test",
30+
"build": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./program/target/so",
31+
"deploy": "solana program deploy ./program/target/so/program.so"
32+
},
33+
```
34+
35+
5. Test command for anchor should execute `pnpm test` instead of `yarn run test` for anchor programs. Replace `yarn` with `pnpm` in `[script]` table inside [Anchor.toml file.](https://www.anchor-lang.com/docs/manifest#scripts-required-for-testing)
36+
37+
## Code of Conduct
38+
We are committed to providing a friendly, safe, and welcoming environment for all contributors, regardless of their background, experience level, or personal characteristics. As a contributor, you are expected to:
39+
40+
Be respectful and inclusive in your interactions with others.
41+
Refrain from engaging in any form of harassment, discrimination, or offensive behavior. Be open to constructive feedback and be willing to learn from others.
42+
Help create a positive and supportive community where everyone feels valued and respected.
43+
44+
If you encounter any behavior that violates our code of conduct, please report it to the project maintainers immediately.

‎.github/workflows/anchor.yml

+131-38
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,146 @@
1-
name: Anchor Build
1+
name: Anchor
22

33
on:
44
schedule:
5-
- cron: '0 0 1 * *'
5+
- cron: '0 0 * * *'
6+
push:
7+
branches:
8+
- main
9+
pull_request:
10+
types: [ opened, synchronize, reopened ]
11+
branches:
12+
- main
613

714
jobs:
815
build:
916
runs-on: ubuntu-latest
10-
17+
strategy:
18+
matrix:
19+
node-version: [20.x]
20+
solana-version: [stable, 1.17.25]
21+
anchor-version: [0.29.0]
1122
steps:
12-
- uses: actions/checkout@v2
13-
14-
- name: Install dependencies
23+
- uses: actions/checkout@v4
24+
- name: Use Node.js ${{ matrix.node-version }}
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: ${{ matrix.node-version }}
28+
check-latest: true
29+
- uses: heyAyushh/[email protected]
30+
with:
31+
solana-cli-version: ${{ matrix.solana-version }}
32+
- run: solana block
33+
shell: bash
34+
- name: Install Anchor
1535
run: |
16-
sh -c "$(curl -sSfL https://release.solana.com/stable/install)"
17-
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH"
1836
solana -V
1937
rustc -V
20-
sudo apt-get update && sudo apt-get upgrade && sudo apt-get install -y pkg-config build-essential libudev-dev libssl-dev
2138
cargo install --git https://github.com/coral-xyz/anchor avm --locked --force
22-
avm install latest
23-
avm use latest
24-
declare -a StringArray=(
25-
"basics/checking-accounts/anchor"
26-
"basics/close-account/anchor"
27-
"basics/counter/anchor"
28-
"basics/create-account/anchor"
29-
"basics/hello-solana/anchor"
30-
"basics/pda-rent-payer/anchor"
31-
"basics/processing-instructions/anchor"
32-
"basics/program-derived-addresses/anchor"
33-
"basics/realloc/anchor"
34-
"basics/rent/anchor"
35-
"basics/repository-layout/anchor"
36-
"basics/transfer-sol/anchor"
37-
"compression/cnft-vault/anchor"
38-
"oracles/pyth/anchor"
39-
"tokens/create-token/anchor"
40-
"tokens/nft-minter/anchor"
41-
"tokens/pda-mint-authority/anchor"
42-
"tokens/spl-token-minter/anchor"
43-
"tokens/token-2022/basics/anchor"
44-
"tokens/transfer-tokens/anchor"
45-
"basics/account-data/anchor"
39+
avm install ${{ matrix.anchor-version }}
40+
avm use ${{ matrix.anchor-version }}
41+
npm install --global pnpm
42+
- name: Build Anchor programs
43+
run: |
44+
declare -a ProjectDirs=(
45+
"basics/account-data/anchor"
46+
"basics/checking-accounts/anchor"
47+
"basics/close-account/anchor"
48+
"basics/counter/anchor"
49+
"basics/create-account/anchor"
50+
"basics/hello-solana/anchor"
51+
"basics/pda-rent-payer/anchor"
52+
"basics/processing-instructions/anchor"
53+
"basics/program-derived-addresses/anchor"
54+
"basics/realloc/anchor"
55+
"basics/rent/anchor"
56+
"basics/repository-layout/anchor"
57+
"basics/transfer-sol/anchor"
58+
)
59+
for projectDir in "${ProjectDirs[@]}"; do
60+
echo "
61+
********
62+
Building $projectDir
63+
********"
64+
cd $projectDir
65+
if anchor build; then
66+
echo "Build succeeded for $projectDir."
67+
else
68+
failed=true
69+
failed_builds+=($projectDir)
70+
echo "Build failed for $projectDir. Continuing with the next program."
71+
fi
72+
cd - > /dev/null
73+
done
74+
if [ "$failed" = true ]; then
75+
echo "Programs that failed building:"
76+
printf "%s\n" "${failed_builds[@]}"
77+
exit 1
78+
else
79+
echo "All programs built successfully."
80+
fi
81+
shell: bash
82+
83+
test:
84+
runs-on: ubuntu-latest
85+
strategy:
86+
matrix:
87+
node-version: [20.x]
88+
solana-version: [1.18.4, stable]
89+
anchor-version: [0.29.0]
90+
steps:
91+
- uses: actions/checkout@v4
92+
- name: Setup Anchor
93+
uses: heyAyushh/[email protected]
94+
with:
95+
anchor-version: ${{ matrix.anchor-version }}
96+
solana-cli-version: ${{ matrix.solana-version }}
97+
node-version: ${{ matrix.node-version }}
98+
- name: Display versions
99+
run: |
100+
solana -V
101+
solana-keygen new --no-bip39-passphrase
102+
rustc -V
103+
anchor -V
104+
npm i -g pnpm
105+
- name: Test anchor programs
106+
run: |
107+
declare -a ProjectDirs=(
108+
"basics/account-data/anchor"
109+
"basics/checking-accounts/anchor"
110+
"basics/close-account/anchor"
111+
"basics/counter/anchor"
112+
"basics/create-account/anchor"
113+
"basics/hello-solana/anchor"
114+
"basics/pda-rent-payer/anchor"
115+
"basics/processing-instructions/anchor"
116+
"basics/program-derived-addresses/anchor"
117+
"basics/realloc/anchor"
118+
"basics/rent/anchor"
119+
"basics/repository-layout/anchor"
120+
"basics/transfer-sol/anchor"
46121
)
47-
for val in "${StringArray[@]}"; do
48-
echo "Building $val..."
49-
cd $val
50-
anchor build
51-
cd - > /dev/null
122+
for projectDir in "${ProjectDirs[@]}"; do
123+
echo "
124+
********
125+
Testing $projectDir
126+
********"
127+
cd $projectDir
128+
pnpm install --frozen-lockfile
129+
if anchor test; then
130+
echo "Tests succeeded for $projectDir."
131+
else
132+
failed=true
133+
failed_tests+=($projectDir)
134+
echo "Tests failed for $val. Continuing with the next program."
135+
fi
136+
cd - > /dev/null
52137
done
138+
if [ "$failed" = true ]; then
139+
echo "*****************************"
140+
echo "Programs that failed testing:"
141+
printf "%s\n" "${failed_tests[@]}"
142+
exit 1
143+
else
144+
echo "All tests passed."
145+
fi
53146
shell: bash

‎.github/workflows/native.yml

-52
This file was deleted.

0 commit comments

Comments
 (0)