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
|
||||
run: nix-shell --run 'make tangle'
|
||||
|
||||
- name: Build external dependencies
|
||||
run: nix-shell --run 'make extern'
|
||||
## TODO: do this in a matrix
|
||||
- name: gcc -> Build external dependencies
|
||||
run: nix-shell --run 'make extern CONFIG=gcc'
|
||||
|
||||
- name: Build lib
|
||||
run: nix-shell --run 'make lib'
|
||||
- name: gcc -> Build lib
|
||||
run: nix-shell --run 'make lib CONFIG=gcc'
|
||||
|
||||
- name: Build bench
|
||||
run: nix-shell --run 'make bench'
|
||||
- name: gcc -> Build 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
|
||||
run: |
|
||||
|
||||
Loading…
Reference in New Issue
Block a user