forked from ocaml-wasm/wasm_of_ocaml
-
Notifications
You must be signed in to change notification settings - Fork 0
197 lines (161 loc) · 5.78 KB
/
build.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
name: build
on:
pull_request:
push:
jobs:
build:
env:
OPAMJOBS: 2
OPAMYES: true
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ocaml-compiler:
- 4.14.x
- 5.00.x
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
git config --global core.ignorecase false
- name: Install node
uses: actions/setup-node@v4
with:
node-version: v22.0.0-v8-canary20231204cf8ac0f493
- name: Restore cached binaryen
id: cache-binaryen
uses: actions/cache/restore@v4
with:
path: binaryen
key: ${{ runner.os }}-binaryen-version_116
- name: Checkout binaryen
if: steps.cache-binaryen.outputs.cache-hit != 'true'
uses: actions/checkout@v4
with:
repository: WebAssembly/binaryen
path: binaryen
submodules: true
ref: version_116
- name: Install ninja
if: steps.cache-binaryen.outputs.cache-hit != 'true'
run: sudo apt-get install ninja-build
- name: Build binaryen
if: steps.cache-binaryen.outputs.cache-hit != 'true'
working-directory: ./binaryen
run: |
cmake -G Ninja .
ninja
- name: Cache binaryen
if: steps.cache-binaryen.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: binaryen
key: ${{ runner.os }}-binaryen-version_116
- name: Set binaryen's path
run: |
echo "$GITHUB_WORKSPACE/binaryen/bin" >> $GITHUB_PATH
- name: Restore cached OCaml
id: cache-ocaml
uses: actions/cache/restore@v4
with:
path: |
~/.opam
_opam
/opt/hostedtoolcache/opam/2.1.5/x86_64/opam
key: ${{ runner.os }}-ocaml-${{ matrix.ocaml-compiler }}
- name: Install OCaml ${{ matrix.ocaml-compiler }}
if: steps.cache-ocaml.outputs.cache-hit != 'true'
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
dune-cache: true
opam-depext: true
opam-depext-flags: --with-test
- name: Install packages
if: steps.cache-ocaml.outputs.cache-hit
run: sudo apt-get install bubblewrap
- name: Set opam path
if: steps.cache-ocaml.outputs.cache-hit
run: |
echo /opt/hostedtoolcache/opam/2.1.5/x86_64 >> $GITHUB_PATH
- name: Cache OCaml
if: steps.cache-ocaml.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
path: |
~/.opam
_opam
/opt/hostedtoolcache/opam/2.1.5/x86_64/opam
key: ${{ runner.os }}-ocaml-${{ matrix.ocaml-compiler }}
- name: Checkout code
uses: actions/checkout@v4
with:
path: wasm_of_ocaml
- name: Checkout Jane Street opam repository
uses: actions/checkout@v4
with:
repository: janestreet/opam-repository
path: jane-street/opam-repository
- name: Pin dune
run: |
opam pin add -n dune.3.13 https://github.com/ocaml-wasm/dune.git#wasm
- name: Pin wasm_of_ocaml
working-directory: ./wasm_of_ocaml
run: |
for i in *.opam; do opam pin add -n `basename $i .opam`.`< VERSION` .; done
- name: Install opam file parser
run: opam install opam-format ocamlfind dune graphics
- name: Checkout Jane Street packages
run: opam exec -- ocaml wasm_of_ocaml/tools/ci_setup.ml
- name: Update test dependencies
run: opam install num cohttp-lwt-unix ppx_expect
- name: Install wasm_of_ocaml
working-directory: ./wasm_of_ocaml
run: opam install `basename -s .opam *.opam`
- name: Run tests
working-directory: ./wasm_of_ocaml
run: opam exec -- dune build @all @runtest --profile wasm
- name: Run tests with CPS effects
if: ${{ matrix.ocaml-compiler >= '5.' }}
working-directory: ./wasm_of_ocaml
run: opam exec -- dune build @all @runtest --profile wasm-effects
- name: Run Base tests
if: ${{ matrix.ocaml-compiler < '5.' }}
working-directory: ./jane-street/lib/base
run: opam exec -- dune runtest
- name: Run Base bigstring tests
if: ${{ matrix.ocaml-compiler < '5.' }}
working-directory: ./jane-street/lib/base_bigstring
run: opam exec -- dune runtest
- name: Run Core tests
if: ${{ matrix.ocaml-compiler < '5.' }}
working-directory: ./jane-street/lib/core
run: opam exec -- dune runtest
- name: Run Bignum tests
if: ${{ matrix.ocaml-compiler < '5.' }}
working-directory: ./jane-street/lib/bignum
run: opam exec -- dune runtest
- name: Run Bin_prot tests
if: ${{ matrix.ocaml-compiler < '5.' }}
working-directory: ./jane-street/lib/bin_prot
run: opam exec -- dune runtest
- name: Run String_dict tests
if: ${{ matrix.ocaml-compiler < '5.' }}
working-directory: ./jane-street/lib/string_dict
run: opam exec -- dune runtest
- name: Run Zarith tests
if: ${{ matrix.ocaml-compiler < '5.' }}
working-directory: ./jane-street/lib/zarith_stubs_js
run: opam exec -- dune runtest
- name: Run Virtual_dom tests
if: ${{ matrix.ocaml-compiler < '5.' }}
working-directory: ./jane-street/lib/virtual_dom
run: opam exec -- dune runtest
- name: Run Bonsai tests
if: ${{ matrix.ocaml-compiler < '5.' }}
working-directory: ./jane-street/lib/bonsai
run: opam exec -- dune runtest