-
-
Notifications
You must be signed in to change notification settings - Fork 33
231 lines (185 loc) · 6.49 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
name: Ppx CI
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: write
pull-requests: write
defaults:
run:
shell: bash
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-20.04, macos-latest] # Missing windows-latest
ocaml-compiler:
- 4.14.x
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
# https://github.com/mmottl/pcre-ocaml/issues/18
# https://github.com/actions/runner-images/issues/6634
- name: Install pcre (only MacOS)
if: matrix.os == 'macos-latest'
run: brew install pcre
- name: Use Node.js
uses: actions/setup-node@v3
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Load opam cache when not Windows
if: runner.os != 'Windows'
id: opam-cache
uses: actions/cache/restore@v3
with:
path: ~/.opam
key: opam-${{ matrix.os }}-${{ hashFiles('**.opam') }}
- name: Load opam cache when Windows
if: runner.os == 'Windows'
id: opam-cache-windows
uses: actions/cache/restore@v3
with:
path: _opam
key: opam-${{ matrix.os }}-${{ hashFiles('**.opam') }}
- name: Install dependencies
run: make install
- name: Install pins
run: make pin
- name: Build
run: make build
- name: Test ppx snapshot
run: make test_ppx_snapshot
- name: Test Typecheck
run: make test_typecheck
- name: Test CSS Support
run: make test_css_support
- name: Test CSS Lexer
run: make test_css_lexer
- name: Test CSS Parser
run: make test_parser
- name: Test CSS Parser
run: make test_reason_css_parser
- name: Test CSS Spec Parser
run: make test_css_spec_parser
- name: Test CSS Spec type generation
run: make test_css_spec_types
- name: Test string interpolation
run: make test_string_interpolation
- name: Release static
run: make release-static
- name: Upload artifacts for ${{ matrix.os }}
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os }}
path: _build/default/bin/bin.exe
- name: Save cache when not Windows
uses: actions/cache/save@v3
if: steps.opam-cache.outputs.cache-hit != 'true' && runner.os != 'Windows'
with:
path: ~/.opam
key: opam-${{ matrix.os }}-${{ hashFiles('**.opam') }}
- name: Save cache when Windows
uses: actions/cache/save@v3
if: steps.opam-cache-windows.outputs.cache-hit != 'true' && runner.os == 'Windows'
with:
path: _opam
key: opam-${{ matrix.os }}-${{ hashFiles('**.opam') }}
e2e:
name: Browser tests
runs-on: ${{ matrix.os }}
needs: build
strategy:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: ${{ matrix.os }}
path: _build/default/bin
- name: Grant permission to run ppx
run: chmod +x _build/default/bin/bin.exe
- name: Install dependencies
working-directory: ./e2e/rescript-v9-JSX3
run: npm install --force
- name: Build
working-directory: ./e2e/rescript-v9-JSX3
run: npm run build
- name: Test
working-directory: ./e2e/rescript-v9-JSX3
run: npm run test
publish:
name: Publish
needs: build
if: github.repository_owner == 'davesnx'
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
- name: Make NPM release skeleton
run: node scripts/release-make-skeleton.js
- name: Print short SHA
id: sha
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Download linux artifacts
uses: actions/download-artifact@v3
with:
name: ubuntu-20.04
path: _release/platform-linux-x64
- name: Download macOS artifacts
uses: actions/download-artifact@v3
with:
name: macos-latest
path: _release/platform-darwin-x64
# - name: Download windows artifacts
# uses: actions/download-artifact@v3
# with:
# name: windows-latest
# path: _release/platform-windows-x64
- name: Release nightly NPM package
if: ${{ success() && github.event_name == 'pull_request' && github.event.pull_request.user.login == 'davesnx' }}
id: nightly
working-directory: ./_release
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
run: |
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
npm config set scope "@davesnx"
npm version prerelease --preid ${{ steps.sha.outputs.sha_short }} -no-git-tag-version
npm publish --access public --tag nightly
echo "version=$(npm view @davesnx/styled-ppx@nightly version)" >> $GITHUB_OUTPUT
- name: Release NPM package
if: ${{ success() && github.event_name != 'pull_request' }}
working-directory: ./_release
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
run: |
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
npm config set scope "@davesnx"
REMOTE=$(npm view @davesnx/styled-ppx version)
CURRENT=$(jq -r '.version' package.json)
if [ "$REMOTE" != "$CURRENT" ]
then
npm publish --access public
else
echo "New verison and remote version are equal, nothing to publish"
fi
- uses: mshick/add-pr-comment@v2
if: ${{ steps.nightly.outputs.version }}
with:
message: |
New **nightly** version has been published to the NPM registry: [@davesnx/styled-ppx@${{ steps.nightly.outputs.version }}](https://www.npmjs.com/package/@davesnx/styled-ppx/v/${{ steps.nightly.outputs.version }}).
Install it with `npm install @davesnx/styled-ppx@nightly` or `npm install @davesnx/styled-ppx@${{ steps.nightly.outputs.version }}`.
repo-token: ${{ secrets.GITHUB_TOKEN }}
allow-repeats: false