feat(workflows/eval): Separate the evaluation in 3 jobs

This commit is contained in:
Tom Hubrecht 2023-12-15 22:18:33 +01:00
parent 34e3953418
commit ed3c927b9a

View file

@ -5,12 +5,32 @@ on:
- main - main
jobs: jobs:
build_configs: build_compute01:
runs-on: nix runs-on: nix
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Build the nodes - name: Build compute01
run: | run: |
# Enter the shell # 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'