Compare commits

..

11 commits

Author SHA1 Message Date
a32a5ae920
container dns
Some checks failed
ci/woodpecker/manual/check-mastodon Pipeline is pending
ci/woodpecker/manual/check-panel Pipeline is pending
ci/woodpecker/manual/check-peertube Pipeline is pending
ci/woodpecker/manual/check-pre-commit Pipeline is pending
ci/woodpecker/manual/check-resources Pipeline is pending
ci/woodpecker/manual/update Pipeline is pending
ci/woodpecker/manual/cd Pipeline failed
ci/woodpecker/manual/check-deployment-panel Pipeline failed
ci/woodpecker/manual/check-deployment-basic Pipeline failed
ci/woodpecker/manual/check-data-model Pipeline failed
ci/woodpecker/manual/check-deployment-cli Pipeline failed
2025-08-04 16:31:04 +02:00
0f4089d430
plug hole in firewall
format
2025-08-04 16:31:04 +02:00
781de49c67
rm agent exec 2025-08-04 16:31:04 +02:00
6eefd19a67
disable exec agent
make service group setting conditional

make secrets conditional

make things conditional
2025-08-04 16:31:04 +02:00
68e9c41eff
add agent groups 2025-08-04 16:31:04 +02:00
b668209ce9
set service groups 2025-08-04 16:31:04 +02:00
dc7606d51c
configure user
simplify secrets

set just group for system users
2025-08-04 16:31:04 +02:00
bc02515daf
un-template
none like _file somehow?
2025-08-04 16:31:04 +02:00
a49f630e40
disable firewall nftables
disables nftables for woodpecker, just like for forgejo-ci
2025-08-04 16:31:04 +02:00
13f0788b81
fix container agent 2025-08-04 16:31:04 +02:00
f45f1df427
add woodpecker CI
add woodpecker

status: agents error `agent could not auth: individual agent not found
by token: sql: no rows in result set`

allow manual

set `image: bash` to initally test `local` woodpecker back-end

split CI jobs

image: `bash` (`local` back-end) -> `nixos/nix` (`docker` back-end)

add debugging lines to CD pipeline to debug error `Could not open a connection to your authentication agent`

add more debug prints to CD

even more debugging

continue debugging

debug harder

explicitly specify flakes as nixos/nix image is missing this

rm /home

update fedi203

wrap faulty statement

fix check-resources
2025-08-04 16:31:04 +02:00

View file

@ -13,17 +13,16 @@ steps:
- name: check-resources
image: nixos/nix
commands:
- echo ==================== [ VM Options ] ====================
- |
set -euC
echo ==================== [ VM Options ] ====================
machines=$(nix eval --impure --raw --expr 'with builtins; toString (attrNames (getFlake (toString ./.)).vmOptions)')
for machine in $machines; do
echo ~~~~~~~~~~~~~~~~~~~~~: $machine :~~~~~~~~~~~~~~~~~~~~~
nix build --extra-experimental-features 'nix-command flakes' .#checks.x86_64-linux.vmOptions-$machine
done
- echo ==================== [ NixOS Configurations ] ====================
- |
set -euC
echo
echo ==================== [ NixOS Configurations ] ====================
machines=$(nix eval --impure --raw --expr 'with builtins; toString (attrNames (getFlake (toString ./.)).nixosConfigurations)')
for machine in $machines; do
echo ~~~~~~~~~~~~~~~~~~~~~: $machine :~~~~~~~~~~~~~~~~~~~~~