-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (42 loc) · 1.02 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
name: Nix
on:
push:
branches-ignore: [ '_**' ]
pull_request:
workflow_dispatch:
jobs:
nix:
runs-on: self-hosted
steps:
- name: checkout
uses: actions/checkout@v4
#- name: build StarMalloc (light)
# run: |
# nix build -L .#starmalloc-light
#- name: build StarMalloc (light) logs
# run: |
# nix log .#starmalloc-light
- name: build StarMalloc
run: |
nix build -L .#starmalloc
- name: build StarMalloc logs
run: |
nix log .#starmalloc
- name: check dist/
run: |
nix build -L .#check-dist
- name: check dist/ logs
run: |
nix log .#check-dist
- name: check vendor/
run: |
nix build -L .#check-vendor
- name: check vendor/ logs
run: |
nix log .#check-vendor
#- name: bench StarMalloc
# run: |
# nix build -L .#bench
#- name: bench StarMalloc logs
# run: |
# nix log .#bench