forked from innopolis-devops/labs
-
Notifications
You must be signed in to change notification settings - Fork 0
363 lines (360 loc) · 12.3 KB
/
ci.yaml
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
jobs:
_1_init:
name: Initial Nix job
permissions:
actions: write
contents: write
runs-on: ubuntu-22.04
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Install Nix
uses: nixbuild/nix-quick-install-action@v25
with:
nix_conf: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
substituters = https://cache.nixos.org/ https://nix-community.cachix.org https://cache.iog.io https://deemp.cachix.org
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= deemp.cachix.org-1:9shDxyR2ANqEPQEEYDL/xIOnoPwxHot21L5fiZnFL18=
keep-outputs = true
- name: Restore and cache Nix store
uses: nix-community/cache-nix-action@v1
with:
key: nix-ubuntu-22.04-init-${{ hashfiles('**/flake.nix', '**/flake.lock') }}
linux-gc-enabled: true
linux-max-store-size: 4500000000
restore-keys: |
nix-ubuntu-22.04-init-
- name: Remove old cache profiles
run: rm -rf /nix/var/nix/profiles/cache
- name: Configure git for github-actions
run: |
git config --global user.name github-actions
git config --global user.email github-actions@github.com
- name: Update flake locks
run: |-
nix profile install .#updateLocks
nix run .#updateLocks
- name: Format Nix files
run: |-
nix profile install .#format
nix run .#format
- name: Run writers
run: |-
nix profile install .#writeAll
nix run .#writeAll
- name: Commit & Push
run: |-
git pull --rebase --autostash
git add .
git commit \
-m "action" \
-m "Update flake locks" \
-m "Format Nix files" \
-m "Run writers" \
|| echo "commit failed!"
git push
- name: Purge cache
uses: deemp/purge-cache@v1
with:
accessed: false
created: true
debug: true
max-age: 172800
_2_cache:
name: Caching Nix
needs:
- _1_init
permissions:
actions: write
contents: write
runs-on: ${{ matrix.os }}
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Install Nix
uses: nixbuild/nix-quick-install-action@v25
with:
nix_conf: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
substituters = https://cache.nixos.org/ https://nix-community.cachix.org https://cache.iog.io https://deemp.cachix.org
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= deemp.cachix.org-1:9shDxyR2ANqEPQEEYDL/xIOnoPwxHot21L5fiZnFL18=
keep-outputs = true
- name: Restore and cache Nix store
uses: nix-community/cache-nix-action@v1
with:
key: nix-${{ matrix.os }}-caching-${{ hashfiles('**/flake.nix', '**/flake.lock') }}
linux-gc-enabled: true
linux-max-store-size: 7500000000
macos-gc-enabled: true
macos-max-store-size: 7000000000
restore-keys: |
nix-${{ matrix.os }}-caching-
- name: Remove old cache profiles
run: rm -rf /nix/var/nix/profiles/cache
- env:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
CACHIX_CACHE: ${{ secrets.CACHIX_CACHE }}
name: Push flakes to Cachix
run: |-
nix profile install .#pushToCachix
nix run .#pushToCachix
- name: Purge cache
uses: deemp/purge-cache@v1
with:
accessed: false
created: true
debug: true
max-age: 172800
strategy:
matrix:
os:
- macos-11
- macos-12
- ubuntu-20.04
- ubuntu-22.04
_3_changed-files-app_purescript:
name: Check if app_purescript has any modified files
needs:
- _1_init
outputs:
app_purescript: ${{ steps.changed-files.outputs.any_modified }}
runs-on: ubuntu-22.04
steps:
- name: Checkout this repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- id: changed-files
name: Get changed files
uses: tj-actions/changed-files@v37
with:
files: |
app_purescript/**
flake*
.github/**
sha: ${{ github.sha }}
- if: steps.changed-files.outputs.any_modified == 'true'
name: List changed files
run: echo "${{ steps.changed-files.outputs.all_changed_files }}"
_3_changed-files-app_python:
name: Check if app_python has any modified files
needs:
- _1_init
outputs:
app_python: ${{ steps.changed-files.outputs.any_modified }}
runs-on: ubuntu-22.04
steps:
- name: Checkout this repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- id: changed-files
name: Get changed files
uses: tj-actions/changed-files@v37
with:
files: |
app_python/**
flake*
.github/**
sha: ${{ github.sha }}
- if: steps.changed-files.outputs.any_modified == 'true'
name: List changed files
run: echo "${{ steps.changed-files.outputs.all_changed_files }}"
_4_app-ci-app_purescript:
defaults:
run:
working-directory: app_purescript
if: needs._3_changed-files-app_purescript.outputs.app_purescript == 'true'
name: CI for app_purescript
needs:
- _3_changed-files-app_purescript
permissions:
actions: write
contents: write
runs-on: ${{ matrix.os }}
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Install Nix
uses: nixbuild/nix-quick-install-action@v25
with:
nix_conf: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
substituters = https://cache.nixos.org/ https://nix-community.cachix.org https://cache.iog.io https://deemp.cachix.org
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= deemp.cachix.org-1:9shDxyR2ANqEPQEEYDL/xIOnoPwxHot21L5fiZnFL18=
keep-outputs = true
- name: Restore and cache Nix store
uses: nix-community/cache-nix-action@v1
with:
key: nix-${{ matrix.os }}-app-${{ hashfiles('**/flake.nix', '**/flake.lock') }}
linux-gc-enabled: true
linux-max-store-size: 2000000000
macos-gc-enabled: true
macos-max-store-size: 2000000000
restore-keys: |
nix-${{ matrix.os }}-app-
- name: Remove old cache profiles
run: rm -rf /nix/var/nix/profiles/cache
- uses: actions/cache@v3
with:
key: ${{ runner.os }}-front-${{ hashFiles('**/*.dhall') }}
path: |
~/.npm
./app_purescript/.spago
restore-keys: ${{ runner.os }}-front-
- name: Build app
run: |-
nix profile install .#build
nix run .#build
- env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
name: Run Snyk to check for vulnerabilities (Node.js)
run: |-
nix profile install .#snykTest
nix run .#snykTest
- name: Test app
run: |-
nix profile install .#test
nix run .#test
- name: Purge cache
uses: deemp/purge-cache@v1
with:
accessed: false
created: true
debug: true
max-age: 172800
strategy:
matrix:
os:
- ubuntu-22.04
- macos-12
_4_app-ci-app_python:
defaults:
run:
working-directory: app_python
if: needs._3_changed-files-app_python.outputs.app_python == 'true'
name: CI for app_python
needs:
- _3_changed-files-app_python
permissions:
actions: write
contents: write
runs-on: ${{ matrix.os }}
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Install Nix
uses: nixbuild/nix-quick-install-action@v25
with:
nix_conf: |
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
substituters = https://cache.nixos.org/ https://nix-community.cachix.org https://cache.iog.io https://deemp.cachix.org
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs= hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= deemp.cachix.org-1:9shDxyR2ANqEPQEEYDL/xIOnoPwxHot21L5fiZnFL18=
keep-outputs = true
- name: Restore and cache Nix store
uses: nix-community/cache-nix-action@v1
with:
key: nix-${{ matrix.os }}-app-${{ hashfiles('**/flake.nix', '**/flake.lock') }}
linux-gc-enabled: true
linux-max-store-size: 2000000000
macos-gc-enabled: true
macos-max-store-size: 2000000000
restore-keys: |
nix-${{ matrix.os }}-app-
- name: Remove old cache profiles
run: rm -rf /nix/var/nix/profiles/cache
- name: Lint app
run: |-
nix profile install .#lint
nix run .#lint
- env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
name: Run Snyk to check for vulnerabilities (Python)
run: |-
nix profile install .#snykTest
nix run .#snykTest
- name: Test app
run: |-
nix profile install .#test
nix run .#test
- name: Purge cache
uses: deemp/purge-cache@v1
with:
accessed: false
created: true
debug: true
max-age: 172800
strategy:
matrix:
os:
- ubuntu-22.04
- macos-12
_5_push-to-docker-hub-app_purescript:
name: Push 'app_purescript' to Docker Hub
needs:
- _4_app-ci-app_purescript
runs-on: ubuntu-22.04
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Pull latest repo changes
run: git pull --rebase --autostash
- name: Hadolint Action
uses: hadolint/hadolint-action@v2.0.0
with:
dockerfile: app_purescript/Dockerfile
no-fail: true
verbose: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
password: ${{ secrets.DOCKER_HUB_PAT }}
username: ${{ secrets.DOCKER_HUB_USERNAME }}
- env:
DOCKER_NAME: ${{ secrets.DOCKER_HUB_USERNAME }}
name: Build and push
uses: docker/build-push-action@v3
with:
context: app_purescript
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/app_purescript:latest
_5_push-to-docker-hub-app_python:
name: Push 'app_python' to Docker Hub
needs:
- _4_app-ci-app_python
runs-on: ubuntu-22.04
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Pull latest repo changes
run: git pull --rebase --autostash
- name: Hadolint Action
uses: hadolint/hadolint-action@v2.0.0
with:
dockerfile: app_python/Dockerfile
no-fail: true
verbose: true
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Log in to Docker Hub
uses: docker/login-action@v2
with:
password: ${{ secrets.DOCKER_HUB_PAT }}
username: ${{ secrets.DOCKER_HUB_USERNAME }}
- env:
DOCKER_NAME: ${{ secrets.DOCKER_HUB_USERNAME }}
name: Build and push
uses: docker/build-push-action@v3
with:
context: app_python
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/app_python:latest
name: CI
"on":
pull_request: {}
push: {}
schedule:
- cron: 0 0 * * *
workflow_dispatch: {}