2023-12-12 17:29:16 +01:00
|
|
|
name: build configuration
|
|
|
|
on:
|
|
|
|
pull_request:
|
2024-01-04 15:36:50 +01:00
|
|
|
types: [opened, synchronize, edited, reopened]
|
2023-12-12 17:29:16 +01:00
|
|
|
branches:
|
|
|
|
- main
|
2023-12-18 15:49:51 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2023-12-12 17:29:16 +01:00
|
|
|
|
|
|
|
jobs:
|
2023-12-15 22:18:33 +01:00
|
|
|
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
|
|
|
|
|
2023-12-15 22:18:33 +01:00
|
|
|
- name: Build compute01
|
2023-12-12 17:29:16 +01:00
|
|
|
run: |
|
|
|
|
# Enter the shell
|
2024-02-01 13:40:10 +01:00
|
|
|
nix-shell --run 'colmena build --on compute01'
|
2023-12-15 22:18:33 +01:00
|
|
|
|
|
|
|
build_storage01:
|
|
|
|
runs-on: nix
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Build storage01
|
|
|
|
run: |
|
|
|
|
# Enter the shell
|
2024-02-01 13:40:10 +01:00
|
|
|
nix-shell --run 'colmena build --on storage01'
|
2023-12-15 22:18:33 +01:00
|
|
|
|
2024-01-10 15:00:18 +01:00
|
|
|
build_vault01:
|
|
|
|
runs-on: nix
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Build vault01
|
|
|
|
run: |
|
|
|
|
# Enter the shell
|
2024-02-01 13:40:10 +01:00
|
|
|
nix-shell --run 'colmena build --on vault01'
|
2024-01-10 15:00:18 +01:00
|
|
|
|
2023-12-15 22:18:33 +01:00
|
|
|
build_web01:
|
|
|
|
runs-on: nix
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Build web01
|
|
|
|
run: |
|
|
|
|
# Enter the shell
|
2024-02-01 13:40:10 +01:00
|
|
|
nix-shell --run 'colmena build --on web01'
|
2024-01-11 12:45:01 +01:00
|
|
|
|
|
|
|
build_web02:
|
|
|
|
runs-on: nix
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Build web02
|
|
|
|
run: |
|
|
|
|
# Enter the shell
|
2024-02-01 13:40:10 +01:00
|
|
|
nix-shell --run 'colmena build --on web02'
|
2024-02-21 01:48:29 +01:00
|
|
|
|
|
|
|
build_rescue01:
|
|
|
|
runs-on: nix
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Build rescue01
|
|
|
|
run: |
|
|
|
|
# Enter the shell
|
|
|
|
nix-shell --run 'colmena build --on rescue01'
|
2024-04-12 19:53:02 +02:00
|
|
|
|
|
|
|
push_to_cache:
|
|
|
|
runs-on: nix
|
|
|
|
needs:
|
|
|
|
- build_compute01
|
|
|
|
- build_storage01
|
|
|
|
- build_vault01
|
|
|
|
- build_web01
|
|
|
|
- build_web02
|
|
|
|
- build_rescue01
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Push to cache
|
|
|
|
run: nix-shell --run push-to-cache
|
|
|
|
env:
|
|
|
|
ATTIC_ENDPOINT: "https://cachix.dgnum.eu"
|
|
|
|
ATTIC_TOKEN: ${{ secrets.ATTIC_TOKEN }}
|