-
Notifications
You must be signed in to change notification settings - Fork 5
279 lines (268 loc) · 8.08 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
name: CI
on:
push:
branches: [ master, dev ]
pull_request:
branches:
- '**'
schedule:
- cron: '0 0 * * 0'
jobs:
deploy-assets:
name: Deploy Assets
runs-on: ubuntu-20.04
env:
PERSONAL_ACCESS_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
- run: ./ci/deploy_assets.sh
docker-build:
name: Docker Build
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
fetch-depth: 0 # fetch all history for all branches and tags
- name: Push to Docker Hub
uses: docker/build-push-action@v1
with:
push: true
tags: "GITHUB_ACTION_${{ github.run_number }}"
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: mmore500/dishtiny
add_git_labels: true
tidy:
name: Tidy
runs-on: ubuntu-20.04
needs:
- docker-build
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
# github actions requires root to access mounted volumes
options: --user root
steps:
- run: |
cd /opt/dishtiny
./ci/test_tidy.sh
docs:
name: Docs
runs-on: ubuntu-20.04
needs:
- docker-build
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
# github actions requires root to access mounted volumes
options: --user root
steps:
- run: |
cd /opt/dishtiny
make docs
python3 ci/test_readme_snippets.py
py-unit:
name: Python Unit Tests
runs-on: ubuntu-20.04
needs:
- docker-build
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
# github actions requires root to access mounted volumes
options: --user root --cap-add=SYS_ADMIN
env:
DISH_MPICXX: mpicxx.openmpi
OMPI_CXX: clang++
steps:
- run: /opt/dishtiny/dishpylib/test/run_tests.sh
cpp-unit:
name: C++ Unit Tests
runs-on: ubuntu-20.04
needs:
- docker-build
strategy:
matrix:
cxx: [clang++, g++]
mode: [ "", opt]
fail-fast: false
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
# github actions requires root to access mounted volumes
options: --user root --cap-add=SYS_ADMIN
env:
DISH_MPICXX: mpicxx.openmpi
OMPI_CXX: ${{ matrix.cxx }}
steps:
- run: |
set -x
cd /opt/dishtiny/tests/dish2
make ${{ matrix.mode }}
source:
name: Source
runs-on: ubuntu-20.04
needs:
- docker-build
strategy:
matrix:
cxx: [clang++, g++]
mode: [ "", opt]
fail-fast: false
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
options: --user user --cap-add=SYS_ADMIN
env:
DISH_MPICXX: mpicxx.openmpi
OMPI_CXX: ${{ matrix.cxx }}
steps:
# undo github actions override of HOME to "/home/github/"
- run: |
export HOME="/home/user/"
set -x
make -C /opt/dishtiny/ test-source
make -C /opt/dishtiny/tests/source
make -C /opt/dishtiny/tests/source ${{ matrix.mode }}
coverage:
name: Coverage
runs-on: ubuntu-20.04
needs:
- docker-build
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
# github actions requires root to access mounted volumes
options: --user root --cap-add=SYS_ADMIN
env:
DISH_MPICXX: mpicxx.openmpi
OMPI_CXX: clang++
steps:
- run: "make coverage -C /opt/dishtiny/tests/dish2/"
- uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos
fail_ci_if_error: true
verbose: true
directory: /opt/dishtiny
fuzzing:
name: Fuzzing
runs-on: ubuntu-20.04
needs:
- docker-build
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
# github actions requires root to access mounted volumes
options: --user root --cap-add=SYS_ADMIN --cap-add=SYS_PTRACE --security-opt seccomp=unconfined
steps:
- run: |
cd /opt/dishtiny/fuzzing
make
make opt
microbenchmarks:
name: Microbenchmarks
runs-on: ubuntu-20.04
needs:
- docker-build
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
# github actions requires root to access mounted volumes
options: --user root --cap-add=SYS_ADMIN
env:
CONTEXT: actions
DISH_MPICXX: mpicxx.openmpi
OMPI_CXX: clang++
OSF_USERNAME: ${{ secrets.OSF_USERNAME }}
OSF_PASSWORD: ${{ secrets.OSF_PASSWORD }}
steps:
- run: |
cd /opt/dishtiny/microbenchmarks
make
binder:
name: Notebooks
runs-on: ubuntu-20.04
needs:
- docker-build
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_DEFAULT_REGION: ${{ secrets.AWS_DEFAULT_REGION }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
OSF_PASSWORD: ${{ secrets.OSF_PASSWORD }}
OSF_USERNAME: ${{ secrets.OSF_USERNAME }}
# github actions requires root to access mounted volumes
options: --user root
steps:
# Adapted from https://askubuntu.com/a/524368
- run: cd /opt/dishtiny/binder && ./execute_notebooks.sh
- run: git init
- uses: fregante/setup-git-user@v1
- run: git commit --allow-empty -m "Initial commit"
- run: cp -r /opt/dishtiny/ deploy/
- uses: JamesIves/github-pages-deploy-action@4.0.0
with:
branch: binder # The branch the action should deploy to.
folder: deploy # The folder the action should deploy.
deploy-pages:
name: Deploy to GitHub Pages
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/master'
needs:
- binder
- coverage
- cpp-unit
- docs
- fuzzing
- microbenchmarks
- py-unit
- source
- tidy
container:
image: mmore500/dishtiny:GITHUB_ACTION_${{ github.run_number }}
env:
OSF_PASSWORD: ${{ secrets.OSF_PASSWORD }}
OSF_USERNAME: ${{ secrets.OSF_USERNAME }}
# github actions requires root to access mounted volumes
options: --user root
steps:
# fix for https://github.com/mmore500/dishtiny/runs/2146191664?check_suite_focus=true#step:7:1
# /usr/bin/git config user.name mmore500
# fatal: not in a git directory
- run: git init
- uses: fregante/setup-git-user@v1
- run: git commit --allow-empty -m "Initial commit"
- run: make -C /opt/dishtiny/ web-deploy
- run: make -C /opt/dishtiny/ badges
- run: git clone https://github.com/mmore500/dishtiny.git -b web-archive deploy/
- run: cp -r /opt/dishtiny/web/ deploy/master/
- uses: JamesIves/github-pages-deploy-action@4.0.0
with:
branch: gh-pages # The branch the action should deploy to.
folder: deploy # The folder the action should deploy.
clean: true # Automatically remove deleted files from the deploy branch
deploy-dockerhub:
name: Deploy to DockerHub
runs-on: ubuntu-20.04
needs:
- binder
- coverage
- cpp-unit
- docs
- fuzzing
- microbenchmarks
- py-unit
- source
- tidy
steps:
- uses: actions/checkout@v2
with:
submodules: 'recursive'
fetch-depth: 0 # fetch all history for all branches and tags
- name: Push to DockerHub
uses: docker/build-push-action@v1
with:
push: true
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
repository: mmore500/dishtiny
tag_with_ref: true
tag_with_sha: true
add_git_labels: true