diff --git a/.forgejo/workflows/eval.yaml b/.forgejo/workflows/eval.yaml index 9c09a7c..7f31ee6 100644 --- a/.forgejo/workflows/eval.yaml +++ b/.forgejo/workflows/eval.yaml @@ -5,12 +5,32 @@ on: - main jobs: - build_configs: + build_compute01: runs-on: nix steps: - uses: actions/checkout@v3 - - name: Build the nodes + - name: Build compute01 run: | # Enter the shell - nix-shell --run 'colmena build' + nix-shell --run 'colmena build --on compute01' + + build_storage01: + runs-on: nix + steps: + - uses: actions/checkout@v3 + + - name: Build storage01 + run: | + # Enter the shell + nix-shell --run 'colmena build --on storage01' + + build_web01: + runs-on: nix + steps: + - uses: actions/checkout@v3 + + - name: Build web01 + run: | + # Enter the shell + nix-shell --run 'colmena build --on web01'