Add with-clang to ci

This commit is contained in:
Alejandro Gallo 2021-10-12 19:11:20 +02:00
parent 93638c4488
commit 3446c6abba

View File

@ -31,23 +31,23 @@ jobs:
run: nix-shell --run 'make tangle' run: nix-shell --run 'make tangle'
## TODO: do this in a matrix ## TODO: do this in a matrix
- name: gcc -> Build external dependencies - name: gcc Build external dependencies
run: nix-shell --run 'make extern CONFIG=gcc' run: nix-shell --run 'make extern CONFIG=gcc'
- name: gcc -> Build lib - name: gcc Build lib
run: nix-shell --run 'make lib CONFIG=gcc' run: nix-shell --run 'make lib CONFIG=gcc'
- name: gcc -> Build bench - name: gcc Build bench
run: nix-shell --run 'make bench CONFIG=gcc' run: nix-shell --run 'make bench CONFIG=gcc'
- name: clang -> Build external dependencies - name: clang Build external dependencies
run: nix-shell --run 'make extern CONFIG=clang' run: nix-shell --arg with-clang true --run 'make extern CONFIG=clang'
- name: clang -> Build lib - name: clang Build lib
run: nix-shell --run 'make lib CONFIG=clang' run: nix-shell --arg with-clang true --run 'make lib CONFIG=clang'
- name: clang -> Build bench - name: clang Build bench
run: nix-shell --run 'make bench CONFIG=clang' run: nix-shell --arg with-clang true --run 'make bench CONFIG=clang'
- name: create doc - name: create doc
run: | run: |