forked from DGNum/infrastructure
feat(workflows/eval): Separate the evaluation in 3 jobs
This commit is contained in:
parent
34e3953418
commit
ed3c927b9a
1 changed files with 23 additions and 3 deletions
|
@ -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'
|
||||||
|
|
Loading…
Reference in a new issue