-
Notifications
You must be signed in to change notification settings - Fork 7
301 lines (252 loc) · 7.87 KB
/
ci.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
name: CI
on:
push:
branches:
- main
- "v\\d+.\\d+.\\d+-patch"
pull_request:
branches:
- main
jobs:
ppx-build-linux:
name: ppx-build-linux
runs-on: ubuntu-latest
defaults:
run:
working-directory: packages/rescript-schema-ppx/src
strategy:
matrix:
ocaml-compiler:
- 4.12.1
container:
image: ocaml/opam:alpine-3.16-ocaml-4.12
options: --user root
steps:
- uses: actions/checkout@v3
- name: Opam init
run: opam init -a --disable-sandboxing --compiler=${{ matrix.ocaml-compiler }}
- name: Install deps
run: opam install . --deps-only --with-test
- name: Build
run: opam exec -- dune build --profile static
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ppx-build-linux
path: packages/rescript-schema-ppx/src/_build/default/bin/bin.exe
if-no-files-found: error
ppx-build-macos:
name: ppx-build-macos
runs-on: macOS-latest
defaults:
run:
working-directory: packages/rescript-schema-ppx/src
strategy:
matrix:
ocaml-compiler:
- 4.12.1
steps:
- uses: actions/checkout@v3
- name: Use OCaml ${{ matrix.ocaml-compiler}}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install deps
run: opam install . --deps-only --with-test
- name: Build
run: opam exec -- dune build
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: ppx-build-macos
path: packages/rescript-schema-ppx/src/_build/default/bin/bin.exe
if-no-files-found: error
ppx-build-macos-x64:
name: ppx-build-macos-x64
runs-on: macOS-13
defaults:
run:
working-directory: packages/rescript-schema-ppx/src
strategy:
matrix:
ocaml-compiler:
- 4.12.1
steps:
- uses: actions/checkout@v3
- name: Use OCaml ${{ matrix.ocaml-compiler}}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install deps
run: opam install . --deps-only --with-test
- name: Build
run: opam exec -- dune build
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: ppx-build-macos-x64
path: packages/rescript-schema-ppx/src/_build/default/bin/bin.exe
if-no-files-found: error
ppx-build-windows:
name: ppx-build-windows
runs-on: windows-latest
defaults:
run:
working-directory: packages/rescript-schema-ppx/src
strategy:
matrix:
ocaml-compiler:
- 4.12.1
steps:
- uses: actions/checkout@v3
- name: Use OCaml ${{ matrix.ocaml-compiler}}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install deps
run: opam install . --deps-only --with-test
- name: Build
run: opam exec -- dune build
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: ppx-build-windows
path: packages/rescript-schema-ppx/src/_build/default/bin/bin.exe
if-no-files-found: error
test:
name: Test
needs: [ppx-build-linux]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 18.12
cache: "pnpm"
- run: pnpm install
- name: Download ppx linux artifacts
uses: actions/download-artifact@v3
with:
name: ppx-build-linux
path: binaries/linux
- name: Move ppx artifacts
run: |
mv binaries/linux/bin.exe packages/rescript-schema-ppx/ppx-linux.exe
- name: Install ppx
run: pnpm ppx:install
- run: pnpm exec rescript build
working-directory: packages/tests
- run: pnpm lint:stdlib
- run: pnpm coverage
- uses: codecov/codecov-action@v3
with:
files: coverage/lcov.info
pack-rescript-schema:
name: Pack rescript-schema
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- run: pnpm res:build
working-directory: packages/prepack
- run: pnpm lint:stdlib
working-directory: packages/prepack
- run: pnpm build
- name: "Upload artifact: rescript-schema npm package"
uses: actions/upload-artifact@v3
with:
name: rescript-schema
path: packages/artifacts
pack-rescript-schema-ppx:
name: Pack rescript-schema-ppx
needs: [ppx-build-linux, ppx-build-macos, ppx-build-macos-x64, ppx-build-windows]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- name: Download ppx linux artifacts
uses: actions/download-artifact@v3
with:
name: ppx-build-linux
path: binaries/linux
- name: Download macOS artifacts
uses: actions/download-artifact@master
with:
name: ppx-build-macos
path: binaries/macos
- name: Download macOS x64 artifacts
uses: actions/download-artifact@master
with:
name: ppx-build-macos-x64
path: binaries/macos-x64
- name: Download windows artifacts
uses: actions/download-artifact@master
with:
name: ppx-build-windows
path: binaries/windows
- name: Move ppx artifacts
run: |
mv binaries/linux/bin.exe packages/rescript-schema-ppx/ppx-linux.exe
mv binaries/macos/bin.exe packages/rescript-schema-ppx/ppx-osx.exe
mv binaries/macos-x64/bin.exe packages/rescript-schema-ppx/ppx-osx-x64.exe
mv binaries/windows/bin.exe packages/rescript-schema-ppx/ppx-windows.exe
- name: npm pack (rescript-schema-ppx)
run: npm pack
working-directory: packages/rescript-schema-ppx
- name: "Upload artifact: rescript-schema-ppx npm package"
uses: actions/upload-artifact@v3
with:
name: rescript-schema-ppx
path: packages/rescript-schema-ppx/rescript-schema-ppx-8.2.1.tgz
benchmark:
name: Benchmark
needs: [ppx-build-linux]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v3
with:
node-version: 18
cache: "pnpm"
- run: pnpm install
- name: Download ppx linux artifacts
uses: actions/download-artifact@v3
with:
name: ppx-build-linux
path: binaries/linux
- name: Move ppx artifacts
run: |
mv binaries/linux/bin.exe packages/rescript-schema-ppx/ppx-linux.exe
- name: Install ppx
run: pnpm ppx:install
- run: pnpm res:build
working-directory: packages/prepack
- name: Run benchmark
run: pnpm benchmark | tee output.txt
- name: Download previous benchmark data
uses: actions/cache@v3
with:
path: ./cache
key: ${{ runner.os }}-benchmark
- name: Store benchmark result
uses: benchmark-action/github-action-benchmark@v1
with:
tool: "benchmarkjs"
output-file-path: output.txt
external-data-json-path: ./cache/benchmark-data.json
github-token: ${{ secrets.GITHUB_TOKEN }}
alert-threshold: "150%"
comment-always: true
comment-on-alert: true