-
Notifications
You must be signed in to change notification settings - Fork 4
53 lines (50 loc) · 1.42 KB
/
nix.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
name: Nix Related Actions
on:
pull_request:
push:
branches: [main]
jobs:
checks:
name: Nix Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: cachix/install-nix-action@v27
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v14
with:
name: dlr-ft
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: nix flake check
build-test-cover-document:
name: Nix build wasm-interpreter and report
needs: checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: cachix/install-nix-action@v27
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v14
with:
name: dlr-ft
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- run: nix build .?submodules=1#wasm-interpreter --print-build-logs
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
verbose: true
file: result/lcov-codecov.json
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- run: nix build .?submodules=1#report --print-build-logs
- name: Archive report
uses: actions/upload-artifact@v4
with:
name: report
path: result/