infrastructure/.forgejo/workflows/eval.yaml
Tom Hubrecht 4a2a8ecd91
Some checks failed
build configuration / build_storage01 (push) Successful in 1m51s
build configuration / build_web01 (push) Successful in 47s
build configuration / build_compute01 (push) Has been cancelled
feat(workflows): Run eval on push to main
2023-12-18 15:49:51 +01:00

39 lines
741 B
YAML

name: build configuration
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build_compute01:
runs-on: nix
steps:
- uses: actions/checkout@v3
- name: Build compute01
run: |
# Enter the shell
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'