|
8 | 8 | - dev
|
9 | 9 |
|
10 | 10 | defaults:
|
11 |
| - run: |
12 |
| - working-directory: ./solana |
| 11 | + run: |
| 12 | + working-directory: ./solana |
13 | 13 |
|
14 | 14 | jobs:
|
15 | 15 | solana-sbf:
|
16 | 16 | name: Solana Cargo SBF
|
17 |
| - runs-on: ubuntu-20.04 |
| 17 | + runs-on: tilt-kube-public |
18 | 18 | env:
|
19 | 19 | RUSTFLAGS: -Dwarnings
|
20 | 20 |
|
@@ -87,50 +87,50 @@ jobs:
|
87 | 87 | name: Check version
|
88 | 88 | runs-on: ubuntu-latest
|
89 | 89 | steps:
|
90 |
| - - uses: actions/checkout@v4 |
91 |
| - - run: ./scripts/sync-versions --check |
92 |
| - shell: bash |
| 90 | + - uses: actions/checkout@v4 |
| 91 | + - run: ./scripts/sync-versions --check |
| 92 | + shell: bash |
93 | 93 |
|
94 | 94 | anchor-test:
|
95 | 95 | name: Anchor Test
|
96 | 96 | runs-on: ubuntu-latest
|
97 | 97 | steps:
|
98 |
| - - uses: actions/checkout@v4 |
99 |
| - - uses: metadaoproject/setup-anchor@v2 |
100 |
| - with: |
101 |
| - node-version: '20.11.0' |
102 |
| - solana-cli-version: '1.18.10' |
103 |
| - anchor-version: '0.29.0' |
104 |
| - - name: Cache node_modules |
105 |
| - uses: actions/cache@v3 |
106 |
| - with: |
107 |
| - path: ./solana/node_modules/ |
108 |
| - key: node-modules-${{ runner.os }}-build-${{ inputs.node-version }} |
109 |
| - - name: Install node_modules |
110 |
| - run: make node_modules |
111 |
| - shell: bash |
112 |
| - - name: Create keypair |
113 |
| - run: solana-keygen new --no-bip39-passphrase |
114 |
| - shell: bash |
115 |
| - - name: Make Anchor.toml compatible with runner |
116 |
| - run: sed -i 's:/user/:/runner/:' Anchor.toml |
117 |
| - shell: bash |
118 |
| - - name: Install Cargo toolchain |
119 |
| - uses: actions-rs/toolchain@v1 |
120 |
| - with: |
121 |
| - toolchain: stable |
122 |
| - profile: minimal |
123 |
| - components: rustc |
124 |
| - - name: Cache Cargo dependencies |
125 |
| - uses: Swatinem/rust-cache@v2 |
126 |
| - with: |
127 |
| - workspaces: "solana" |
128 |
| - - name: Setup SDK |
129 |
| - run: make sdk |
130 |
| - shell: bash |
131 |
| - - name: Check idl |
132 |
| - run: | |
133 |
| - git diff --exit-code ts/idl |
134 |
| - - name: Run tests |
135 |
| - run: anchor test --skip-build |
136 |
| - shell: bash |
| 98 | + - uses: actions/checkout@v4 |
| 99 | + - uses: metadaoproject/setup-anchor@v2 |
| 100 | + with: |
| 101 | + node-version: "20.11.0" |
| 102 | + solana-cli-version: "1.18.10" |
| 103 | + anchor-version: "0.29.0" |
| 104 | + - name: Cache node_modules |
| 105 | + uses: actions/cache@v3 |
| 106 | + with: |
| 107 | + path: ./solana/node_modules/ |
| 108 | + key: node-modules-${{ runner.os }}-build-${{ inputs.node-version }} |
| 109 | + - name: Install node_modules |
| 110 | + run: make node_modules |
| 111 | + shell: bash |
| 112 | + - name: Create keypair |
| 113 | + run: solana-keygen new --no-bip39-passphrase |
| 114 | + shell: bash |
| 115 | + - name: Make Anchor.toml compatible with runner |
| 116 | + run: sed -i 's:/user/:/runner/:' Anchor.toml |
| 117 | + shell: bash |
| 118 | + - name: Install Cargo toolchain |
| 119 | + uses: actions-rs/toolchain@v1 |
| 120 | + with: |
| 121 | + toolchain: stable |
| 122 | + profile: minimal |
| 123 | + components: rustc |
| 124 | + - name: Cache Cargo dependencies |
| 125 | + uses: Swatinem/rust-cache@v2 |
| 126 | + with: |
| 127 | + workspaces: "solana" |
| 128 | + - name: Setup SDK |
| 129 | + run: make sdk |
| 130 | + shell: bash |
| 131 | + - name: Check idl |
| 132 | + run: | |
| 133 | + git diff --exit-code ts/idl |
| 134 | + - name: Run tests |
| 135 | + run: anchor test --skip-build |
| 136 | + shell: bash |
0 commit comments