Compare commits

..

11 commits

Author SHA1 Message Date
08e04e33b7
container dns 2025-08-04 16:34:56 +02:00
0a331fb4ae
plug hole in firewall
format
2025-08-04 16:34:56 +02:00
1e7cdb558d
rm agent exec 2025-08-04 16:34:55 +02:00
3d93cb597d
disable exec agent
make service group setting conditional

make secrets conditional

make things conditional
2025-08-04 16:34:55 +02:00
e4cb66de08
add agent groups 2025-08-04 16:34:55 +02:00
dc9d2c33a5
set service groups 2025-08-04 16:34:55 +02:00
a4ab7617e6
configure user
simplify secrets

set just group for system users
2025-08-04 16:34:55 +02:00
b55f7f36a1
un-template
none like _file somehow?
2025-08-04 16:34:55 +02:00
762d704b81
disable firewall nftables
disables nftables for woodpecker, just like for forgejo-ci
2025-08-04 16:34:55 +02:00
0fbabc61b8
fix container agent 2025-08-04 16:34:55 +02:00
64411ab29b
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

split
2025-08-04 16:34:55 +02:00

View file

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