Compare commits

..

6 commits

Author SHA1 Message Date
447cbbcdd8
Add a deployment for forgejo-ci
Some checks failed
/ check-pre-commit (pull_request) Has been cancelled
/ check-data-model (pull_request) Has been cancelled
/ check-peertube (pull_request) Has been cancelled
/ check-panel (pull_request) Has been cancelled
/ check-deployment-basic (pull_request) Has been cancelled
/ check-deployment-cli (pull_request) Has been cancelled
/ check-deployment-panel (pull_request) Has been cancelled
2025-07-02 14:07:36 +02:00
aa36402bbc
Make forgejo-ci a Forgejo actions runner 2025-07-02 14:07:23 +02:00
0e0eb20e6b
Copy configuration from forgejo-ci 2025-07-02 14:07:23 +02:00
234f78ac24
move bootloader to a location also imported by non-VM environments 2025-07-02 14:07:23 +02:00
8df70a2ff0 classify recent flake-parts files
All checks were successful
/ check-pre-commit (push) Successful in 12s
/ check-data-model (push) Successful in 30s
/ check-peertube (push) Successful in 20s
/ check-panel (push) Successful in 1m28s
/ check-deployment-basic (push) Successful in 11m34s
/ check-deployment-cli (push) Successful in 37m44s
/ check-deployment-panel (push) Successful in 42m5s
2025-07-02 13:25:23 +02:00
5a92c2c0bc docs: fix links to machines (#426)
Some checks are pending
/ check-pre-commit (push) Waiting to run
/ check-data-model (push) Waiting to run
/ check-peertube (push) Waiting to run
/ check-panel (push) Waiting to run
/ check-deployment-basic (push) Waiting to run
/ check-deployment-cli (push) Waiting to run
/ check-deployment-panel (push) Waiting to run
Reviewed-on: #426
Reviewed-by: Valentin Gagarin <valentin.gagarin@tweag.io>
Co-authored-by: Kiara Grouwstra <kiara@procolix.eu>
Co-committed-by: Kiara Grouwstra <kiara@procolix.eu>
2025-07-02 13:16:38 +02:00
4 changed files with 15 additions and 7 deletions

View file

@ -1 +1,5 @@
{ _module.args.keys = import ./.; }
{
_class = "flake";
_module.args.keys = import ./.;
}

View file

@ -7,10 +7,10 @@ Currently, this repository keeps track of the following VMs:
Machine | Proxmox | Description
--------|---------|-------------
[`fedi200`](./fedi200) | fediversity | Testing machine for Hans
[`fedi201`](./fedi201) | fediversity | FediPanel
[`vm02116`](./vm02116) | procolix | Forgejo
[`vm02187`](./vm02187) | procolix | Wiki
[`fedi200`](./dev/fedi200) | fediversity | Testing machine for Hans
[`fedi201`](./dev/fedi201) | fediversity | FediPanel
[`vm02116`](./dev/vm02116) | procolix | Forgejo
[`vm02187`](./dev/vm02187) | procolix | Wiki
| `forgejo-ci` | n/a (physical) | Forgejo actions runner |
This table excludes all machines with names starting with `test`.

View file

@ -32,7 +32,7 @@ for machine in $(echo "$vmOptions" | jq -r 'keys[]'); do
description=$(echo "$vmOptions" | jq -r ".$machine.description" | head -n 1)
# shellcheck disable=SC2016
printf '[`%s`](./%s) | %s | %s\n' "$machine" "$machine" "$proxmox" "$description"
printf '[`%s`](./dev/%s) | %s | %s\n' "$machine" "$machine" "$proxmox" "$description"
fi
done

View file

@ -1 +1,5 @@
{ _module.args.secrets = import ./.; }
{
_class = "flake";
_module.args.secrets = import ./.;
}