Add clang in ci
This commit is contained in:
parent
f6a67a8ce1
commit
7b7d63f328
22
.github/workflows/main.yml
vendored
22
.github/workflows/main.yml
vendored
@ -30,14 +30,24 @@ jobs:
|
|||||||
- name: Tangle
|
- name: Tangle
|
||||||
run: nix-shell --run 'make tangle'
|
run: nix-shell --run 'make tangle'
|
||||||
|
|
||||||
- name: Build external dependencies
|
## TODO: do this in a matrix
|
||||||
run: nix-shell --run 'make extern'
|
- name: gcc -> Build external dependencies
|
||||||
|
run: nix-shell --run 'make extern CONFIG=gcc'
|
||||||
|
|
||||||
- name: Build lib
|
- name: gcc -> Build lib
|
||||||
run: nix-shell --run 'make lib'
|
run: nix-shell --run 'make lib CONFIG=gcc'
|
||||||
|
|
||||||
- name: Build bench
|
- name: gcc -> Build bench
|
||||||
run: nix-shell --run 'make bench'
|
run: nix-shell --run 'make bench CONFIG=gcc'
|
||||||
|
|
||||||
|
- name: clang -> Build external dependencies
|
||||||
|
run: nix-shell --run 'make extern CONFIG=clang'
|
||||||
|
|
||||||
|
- name: clang -> Build lib
|
||||||
|
run: nix-shell --run 'make lib CONFIG=clang'
|
||||||
|
|
||||||
|
- name: clang -> Build bench
|
||||||
|
run: nix-shell --run 'make bench CONFIG=clang'
|
||||||
|
|
||||||
- name: create doc
|
- name: create doc
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user