infrastructure/.forgejo/workflows/eval.yaml

37 lines
706 B
YAML
Raw Normal View History

2023-12-12 17:29:16 +01:00
name: build configuration
on:
pull_request:
branches:
- main
jobs:
build_compute01:
2023-12-15 20:12:50 +01:00
runs-on: nix
2023-12-12 17:29:16 +01:00
steps:
- uses: actions/checkout@v3
- name: Build compute01
2023-12-12 17:29:16 +01:00
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'