From 929cfa73440a075e0cb2e6b67fb155397842d86b Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Thu, 1 Feb 2024 13:40:10 +0100 Subject: [PATCH] Revert "feat(workflows/eval): Use streaming evaluator" This reverts commit baaf00e6ea298a24a13cfa9754cc24693a2e1adf. --- .forgejo/workflows/eval.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/eval.yaml b/.forgejo/workflows/eval.yaml index 09e2fe8..0072899 100644 --- a/.forgejo/workflows/eval.yaml +++ b/.forgejo/workflows/eval.yaml @@ -17,7 +17,7 @@ jobs: - name: Build compute01 run: | # Enter the shell - nix-shell --run 'colmena build --evaluator streaming --on compute01' + nix-shell --run 'colmena build --on compute01' build_storage01: runs-on: nix @@ -27,7 +27,7 @@ jobs: - name: Build storage01 run: | # Enter the shell - nix-shell --run 'colmena build --evaluator streaming --on storage01' + nix-shell --run 'colmena build --on storage01' build_vault01: runs-on: nix @@ -37,7 +37,7 @@ jobs: - name: Build vault01 run: | # Enter the shell - nix-shell --run 'colmena build --evaluator streaming --on vault01' + nix-shell --run 'colmena build --on vault01' build_web01: runs-on: nix @@ -47,7 +47,7 @@ jobs: - name: Build web01 run: | # Enter the shell - nix-shell --run 'colmena build --evaluator streaming --on web01' + nix-shell --run 'colmena build --on web01' build_web02: runs-on: nix @@ -57,4 +57,4 @@ jobs: - name: Build web02 run: | # Enter the shell - nix-shell --run 'colmena build --evaluator streaming --on web02' + nix-shell --run 'colmena build --on web02'