32f68a54a9
All checks were successful
Check meta / check_dns (pull_request) Successful in 19s
Check meta / check_meta (pull_request) Successful in 21s
Check workflows / check_workflows (pull_request) Successful in 21s
Build all the nodes / bridge01 (pull_request) Successful in 51s
Build all the nodes / geo01 (pull_request) Successful in 52s
Build all the nodes / geo02 (pull_request) Successful in 55s
Build all the nodes / compute01 (pull_request) Successful in 1m32s
Build all the nodes / rescue01 (pull_request) Successful in 57s
Build all the nodes / storage01 (pull_request) Successful in 58s
Build all the nodes / vault01 (pull_request) Successful in 1m11s
Run pre-commit on all files / check (pull_request) Successful in 24s
Build all the nodes / web02 (pull_request) Successful in 1m3s
Build all the nodes / web03 (pull_request) Successful in 59s
Build all the nodes / web01 (pull_request) Successful in 12m35s
Build all the nodes / bridge01 (push) Successful in 1m1s
Build all the nodes / geo01 (push) Successful in 1m6s
Build all the nodes / geo02 (push) Successful in 1m10s
Build all the nodes / rescue01 (push) Successful in 1m11s
Build all the nodes / compute01 (push) Successful in 1m34s
Build all the nodes / storage01 (push) Successful in 1m7s
Build all the nodes / vault01 (push) Successful in 1m11s
Build all the nodes / web02 (push) Successful in 1m6s
Run pre-commit on all files / check (push) Successful in 25s
Build all the nodes / web03 (push) Successful in 1m2s
Build all the nodes / web01 (push) Successful in 1m36s
21 lines
439 B
YAML
21 lines
439 B
YAML
jobs:
|
|
check_dns:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Check the validity of the DNS configuration
|
|
run: nix-build meta/verify.nix -A dns
|
|
check_meta:
|
|
runs-on: nix
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Check the validity of meta options
|
|
run: nix-build meta/verify.nix -A meta
|
|
name: Check meta
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
push:
|
|
paths:
|
|
- meta/*
|