forked from anp/moxie
-
Notifications
You must be signed in to change notification settings - Fork 0
231 lines (217 loc) · 7 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
229
230
231
env:
# coverage collection depends on unstable features.
# we want the CI results to all be from the same toolchain, so we set it up here.
RUSTUP_TOOLCHAIN: nightly-2021-01-10
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ofl:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- run: rustup install ${{ env.RUSTUP_TOOLCHAIN }}
- name: ensure lockfile up to date
run: cargo generate-lockfile --manifest-path ofl/Cargo.toml
- name: install gnu tar to work around https://github.com/actions/cache/issues/403
if: matrix.os == 'macos-latest'
run: |
brew install gnu-tar
echo PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" >> $GITHUB_ENV
- uses: actions/cache@v2
with:
key: ${{ runner.os }}-ofl-${{ hashFiles('ofl/Cargo.lock') }}-${{ env.RUSTUP_TOOLCHAIN }}
path: |
~/.cargo/git
~/.cargo/registry
ofl/target/release
- run: cargo build --release
working-directory: ofl
- run: cargo test --release
working-directory: ofl
- uses: actions/upload-artifact@v2
with:
name: ofl-${{ runner.os }}
path: ofl/target/release/ofl*
coverage:
needs: ofl
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- run: rustup install ${{ env.RUSTUP_TOOLCHAIN }}
- run: rustup component add llvm-tools-preview
- uses: actions/download-artifact@v2
with:
name: ofl-${{ runner.os }}
path: bin/
# TODO(actions/download-artifact#14) undo hack
- run: chmod +x bin/ofl
if: runner.os != 'Windows'
- name: ensure lockfile up to date
run: cargo generate-lockfile
- name: install gnu tar to work around https://github.com/actions/cache/issues/403
if: matrix.os == 'macos-latest'
run: |
brew install gnu-tar
echo PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" >> $GITHUB_ENV
- uses: actions/cache@v2
with:
key: ${{ runner.os }}-coverage-${{ hashFiles('Cargo.lock') }}-${{ env.RUSTUP_TOOLCHAIN }}
path: |
~/.cargo/git
~/.cargo/registry
target
- run: bin/ofl coverage collect test-core
- run: bin/ofl coverage collect test-core-doc
- run: bin/ofl coverage collect test-dom
- run: bin/ofl coverage collect test-dom-doc
- run: bin/ofl coverage report
- run: bin/ofl coverage cleanup
- uses: codecov/codecov-action@v1
with:
file: ./target/coverage/lcov.info
dom:
needs: ofl
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- run: rustup install ${{ env.RUSTUP_TOOLCHAIN }}
- uses: actions/download-artifact@v2
with:
name: ofl-${{ runner.os }}
path: bin/
# TODO(actions/download-artifact#14) undo hack
- run: chmod +x bin/ofl
if: runner.os != 'Windows'
- name: ensure lockfile up to date
run: cargo generate-lockfile
- name: install gnu tar to work around https://github.com/actions/cache/issues/403
if: matrix.os == 'macos-latest'
run: |
brew install gnu-tar
echo PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" >> $GITHUB_ENV
- uses: actions/cache@v2
with:
key: ${{ runner.os }}-dom-${{ hashFiles('Cargo.lock') }}-${{ env.RUSTUP_TOOLCHAIN }}
path: |
~/.cargo/git
~/.cargo/registry
target
- run: cargo test-prettiest
- run: cargo test-augdom
- run: cargo test-dom-lib-browser
- run: cargo test-dom-counter-fn
- run: cargo test-dom-counter-struct
- run: cargo test-dom-hacking
- run: cargo test-dom-todo
- run: cargo test-dom-drivertest
# - run: cd dom/examples/todo/e2e; npm ci
# - name: todomvc e2e tests
# run: cargo test-dom-todo-e2e --record
# env:
# CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
website:
needs: ofl
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- run: rustup install ${{ env.RUSTUP_TOOLCHAIN }}
- uses: actions/download-artifact@v2
with:
name: ofl-${{ runner.os }}
path: bin/
# TODO(actions/download-artifact#14) undo hack
- run: chmod +x bin/ofl
if: runner.os != 'Windows'
- name: ensure lockfile up to date
run: cargo generate-lockfile
- name: install gnu tar to work around https://github.com/actions/cache/issues/403
if: matrix.os == 'macos-latest'
run: |
brew install gnu-tar
echo PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" >> $GITHUB_ENV
- uses: actions/cache@v2
with:
key: ${{ runner.os }}-website-${{ hashFiles('Cargo.lock') }}-${{ env.RUSTUP_TOOLCHAIN }}
path: |
~/.cargo/git
~/.cargo/registry
ofl/target/doc
target
- run: cargo build-dom-counter-fn
- run: cargo build-dom-counter-struct
- run: cargo build-dom-hacking
- run: cargo build-dom-todo
- run: cargo docs-all
- run: cargo docs-ofl
- run: bin/ofl website build target/website
- uses: actions/upload-artifact@v2
if: runner.os == 'Linux'
with:
name: website
path: target/website
fmt:
needs: ofl
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: rustup install ${{ env.RUSTUP_TOOLCHAIN }}
- run: rustup component add rustfmt
- uses: actions/download-artifact@v2
with:
name: ofl-${{ runner.os }}
path: bin/
# TODO(actions/download-artifact#14) undo hack
- run: chmod +x bin/ofl
- run: bin/ofl fmt --check
clippy:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@master
- run: rustup install ${{ env.RUSTUP_TOOLCHAIN }}
- run: rustup component add clippy
- run: cargo clippy-ofl
- run: cargo clippy-core
- run: cargo clippy-dom
publish:
if: github.ref == 'refs/heads/main'
needs: [clippy, coverage, dom, fmt, ofl, website]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- run: rustup install ${{ env.RUSTUP_TOOLCHAIN }}
- uses: actions/download-artifact@v2
with:
name: ofl-${{ runner.os }}
path: bin/
# TODO(actions/download-artifact#14) undo hack
- run: chmod +x bin/ofl
- uses: actions/download-artifact@v2
with:
name: website
path: target/website
- name: promote website to prod, ensure crates published
run: |
npx netlify-cli deploy --prod --auth ${{ secrets.NETLIFY_AUTH_TOKEN }}
cargo login ${{ secrets.CARGO_API_TOKEN }}
bin/ofl published
git push origin --tags