|
1 |
| -name: Anchor Build |
| 1 | +name: Anchor |
2 | 2 |
|
3 | 3 | on:
|
4 | 4 | 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 |
6 | 13 |
|
7 | 14 | jobs:
|
8 | 15 | build:
|
9 | 16 | 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] |
11 | 22 | 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 |
15 | 35 | 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" |
18 | 36 | solana -V
|
19 | 37 | rustc -V
|
20 |
| - sudo apt-get update && sudo apt-get upgrade && sudo apt-get install -y pkg-config build-essential libudev-dev libssl-dev |
21 | 38 | 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 | + |
| 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" |
46 | 121 | )
|
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 |
52 | 137 | 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 |
53 | 146 | shell: bash
|
0 commit comments