feat(workflows/eval): Use streaming evaluator
Some checks failed
build configuration / build_compute01 (push) Successful in 1m15s
build configuration / build_web02 (push) Successful in 1m12s
build configuration / build_vault01 (push) Successful in 1m18s
build configuration / build_storage01 (push) Successful in 1m21s
build configuration / build_web01 (push) Has been cancelled

This commit is contained in:
Tom Hubrecht 2024-02-01 13:37:38 +01:00
parent 1c261e5178
commit baaf00e6ea

View file

@ -17,7 +17,7 @@ jobs:
- name: Build compute01
run: |
# Enter the shell
nix-shell --run 'colmena build --on compute01'
nix-shell --run 'colmena build --evaluator streaming --on compute01'
build_storage01:
runs-on: nix
@ -27,7 +27,7 @@ jobs:
- name: Build storage01
run: |
# Enter the shell
nix-shell --run 'colmena build --on storage01'
nix-shell --run 'colmena build --evaluator streaming --on storage01'
build_vault01:
runs-on: nix
@ -37,7 +37,7 @@ jobs:
- name: Build vault01
run: |
# Enter the shell
nix-shell --run 'colmena build --on vault01'
nix-shell --run 'colmena build --evaluator streaming --on vault01'
build_web01:
runs-on: nix
@ -47,7 +47,7 @@ jobs:
- name: Build web01
run: |
# Enter the shell
nix-shell --run 'colmena build --on web01'
nix-shell --run 'colmena build --evaluator streaming --on web01'
build_web02:
runs-on: nix
@ -57,4 +57,4 @@ jobs:
- name: Build web02
run: |
# Enter the shell
nix-shell --run 'colmena build --on web02'
nix-shell --run 'colmena build --evaluator streaming --on web02'