-
Notifications
You must be signed in to change notification settings - Fork 7
228 lines (192 loc) · 6.34 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
name: Main
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CACHE: true
jobs:
changes:
name: Detect changes
runs-on: buildjet-8vcpu-ubuntu-2204
outputs:
any: ${{ steps.changes.outputs.any }}
programs: ${{ steps.changes.outputs.programs }}
program_matrix: ${{ steps.program_matrix.outputs.matrix }}
js_clients: ${{ steps.changes.outputs.js_clients }}
rust_clients: ${{ steps.changes.outputs.rust_clients }}
js_client_matrix: ${{ steps.js_client_matrix.outputs.matrix }}
rust_client_matrix: ${{ steps.rust_client_matrix.outputs.matrix }}
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Load environment variables
run: cat .github/.env >> $GITHUB_ENV
- name: Detect changes
uses: dorny/paths-filter@v3
id: changes
with:
filters: .github/file-filters.yml
- name: Filter program matrix
id: program_matrix
uses: nifty-oss/actions/filter-matrix@v1
with:
matrix: ${{ env.PROGRAMS }}
changes: ${{ steps.changes.outputs.changes }}
suffix: _program
- name: Filter JS client matrix
id: js_client_matrix
uses: nifty-oss/actions/filter-matrix@v1
with:
matrix: ${{ env.PROGRAMS }}
changes: ${{ steps.changes.outputs.changes }}
suffix: _js_client
- name: Filter Rust client matrix
id: rust_client_matrix
uses: nifty-oss/actions/filter-matrix@v1
with:
matrix: ${{ env.PROGRAMS }}
changes: ${{ steps.changes.outputs.changes }}
suffix: _rust_client
lint_rust:
name: Lint Rust
if: ${{ needs.changes.outputs.any == 'true' }}
needs: changes
runs-on: buildjet-8vcpu-ubuntu-2204
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Load environment variables
run: cat .github/.env >> $GITHUB_ENV
- name: Install Rust
uses: nifty-oss/actions/install-rust@v1
with:
toolchain: ${{ env.RUST_VERSION }}
- name: Install Node.js
uses: nifty-oss/actions/install-node-with-pnpm@v1
with:
version: ${{ env.NODE_VERSION }}
cache: ${{ env.CACHE }}
dependencies: true
- name: Cache program dependencies
if: env.CACHE == 'true'
uses: nifty-oss/actions/buildjet-cache-crate@v1
with:
folder: "."
key: programs
- name: Run cargo fmt
uses: nifty-oss/actions/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: nifty-oss/actions/cargo@v1
with:
command: clippy
args: --all-targets --all-features --no-deps
lint_js:
name: Lint JS
if: ${{ needs.changes.outputs.any == 'true' }}
needs: changes
runs-on: buildjet-8vcpu-ubuntu-2204
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Load environment variables
run: cat .github/.env >> $GITHUB_ENV
- name: Install Node.js
uses: nifty-oss/actions/install-node-with-pnpm@v1
with:
version: ${{ env.NODE_VERSION }}
cache: ${{ env.CACHE }}
- name: Install dependencies
uses: nifty-oss/actions/install-node-dependencies@v1
with:
folder: ./clients/js
cache: ${{ env.CACHE }}
key: client-js
- name: Format
working-directory: ./clients/js
run: pnpm format
- name: Lint
working-directory: ./clients/js
run: pnpm lint
build_programs:
name: Programs
if: ${{ needs.changes.outputs.any == 'true' }}
needs: [changes, lint_rust, lint_js]
uses: ./.github/workflows/build-programs.yml
secrets: inherit
test_programs:
name: Programs
if: ${{ needs.changes.outputs.programs == 'true' }}
needs: [changes, lint_rust, lint_js]
uses: ./.github/workflows/test-programs.yml
secrets: inherit
with:
program_matrix: ${{ needs.changes.outputs.program_matrix }}
generate_clients:
name: Generate clients
if: ${{ needs.changes.outputs.any == 'true' }}
needs: [changes, build_programs]
runs-on: buildjet-8vcpu-ubuntu-2204
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Load environment variables
run: cat .github/.env >> $GITHUB_ENV
- name: Install Linux Build Deps
run: sudo apt-get update && sudo apt-get install -y pkg-config build-essential libudev-dev
- name: Install Rust
uses: nifty-oss/actions/install-rust@v1
with:
toolchain: ${{ env.RUST_VERSION }}
- name: Install Solana
uses: nifty-oss/actions/install-solana@v1
with:
version: ${{ env.SOLANA_VERSION }}
cache: ${{ env.CACHE }}
- name: Cache program dependencies
if: env.CACHE == 'true'
uses: nifty-oss/actions/buildjet-cache-crate@v1
with:
folder: "."
key: programs
- name: Install Node.js
uses: nifty-oss/actions/install-node-with-pnpm@v1
with:
version: ${{ env.NODE_VERSION }}
cache: ${{ env.CACHE }}
dependencies: true
- name: Cache IDL generators
if: env.CACHE == 'true'
uses: nifty-oss/actions/buildjet-cache-idl-generators@v1
- name: Generate IDLs and clients
run: pnpm generate
- name: Ensure working directory is clean
run: test -z "$(git status --porcelain)"
test_js:
if: ${{ needs.changes.outputs.js_clients == 'true' }}
name: JS Client
needs: [changes, generate_clients]
uses: ./.github/workflows/test-js-client.yml
secrets: inherit
with:
client_matrix: ${{ needs.changes.outputs.js_client_matrix }}
test_rust:
if: ${{ needs.changes.outputs.rust_clients == 'true' }}
name: Rust Client
needs: [changes, generate_clients]
uses: ./.github/workflows/test-rust-client.yml
secrets: inherit
with:
client_matrix: ${{ needs.changes.outputs.rust_client_matrix }}
build_rust:
if: ${{ needs.changes.outputs.rust_clients == 'true' }}
name: Rust Client
needs: [changes, generate_clients]
uses: ./.github/workflows/build-rust-client.yml
secrets: inherit
with:
client_matrix: ${{ needs.changes.outputs.rust_client_matrix }}