Tom Hubrecht
baaf00e6ea
Some checks failed
build configuration / build_compute01 (push) Successful in 1m15s
build configuration / build_web02 (push) Successful in 1m12s
build configuration / build_vault01 (push) Successful in 1m18s
build configuration / build_storage01 (push) Successful in 1m21s
build configuration / build_web01 (push) Has been cancelled
60 lines
1.3 KiB
YAML
60 lines
1.3 KiB
YAML
name: build configuration
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, edited, reopened]
|
|
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 --evaluator streaming --on compute01'
|
|
|
|
build_storage01:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build storage01
|
|
run: |
|
|
# Enter the shell
|
|
nix-shell --run 'colmena build --evaluator streaming --on storage01'
|
|
|
|
build_vault01:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build vault01
|
|
run: |
|
|
# Enter the shell
|
|
nix-shell --run 'colmena build --evaluator streaming --on vault01'
|
|
|
|
build_web01:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build web01
|
|
run: |
|
|
# Enter the shell
|
|
nix-shell --run 'colmena build --evaluator streaming --on web01'
|
|
|
|
build_web02:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Build web02
|
|
run: |
|
|
# Enter the shell
|
|
nix-shell --run 'colmena build --evaluator streaming --on web02'
|