ci: more testing
Some checks failed
Build_Deploy / deploy_dns (push) Failing after 36s

This commit is contained in:
silver 2024-08-07 19:27:54 +01:00
parent 2ccb75475e
commit b60b609d6f

View file

@ -15,28 +15,35 @@ on:
- .forgejo/**/*
jobs:
# linter:
# runs-on: nix
# steps:
# - uses: actions/checkout@v4
# - run: nix fmt -- --check .
#
# #if: github.repository == 'Skynet/nixos'
# build:
# runs-on: nix
# steps:
# - uses: actions/checkout@v4
# - run: nix develop
# - run: colmena build -v --on @active-dns
# - run: colmena build -v --on @active-core
# - run: colmena build -v --on @active
# - run: colmena build -v --on @active-ext
# - run: colmena build -v --on @active-gitlab
# linter:
# runs-on: nix
# steps:
# - uses: actions/checkout@v4
# - run: nix fmt -- --check .
#
# #if: github.repository == 'Skynet/nixos'
# build:
# runs-on: nix
# steps:
# - uses: actions/checkout@v4
# - run: nix develop
# - run: colmena build -v --on @active-dns
# - run: colmena build -v --on @active-core
# - run: colmena build -v --on @active
# - run: colmena build -v --on @active-ext
# - run: colmena build -v --on @active-gitlab
deploy_dns:
runs-on: nix
# needs: [ linter, build ]
# needs: [ linter, build ]
steps:
- uses: actions/checkout@v4
- run: colmena apply -v --on @active-dns --show-trace
- run: |
whoami
eval $(ssh-agent -s)
echo "${{ secrets.DEPLOY_KEY }}" | tr -d '\r' | ssh-add -
mkdir -p ~/.ssh
chmod 700 ~/.ssh
echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
colmena apply -v --on @active-dns --show-trace
shell: bash