Compare commits

...

1 commit

Author SHA1 Message Date
e23b4d033f
Allow CI to fetch private GitHub repos
Some checks failed
/ test (push) Failing after -44s
2025-05-16 18:38:26 +02:00

View file

@ -9,6 +9,15 @@ jobs:
name: Checkout repository
- name: Attic login
run: attic login nixfleet http://sisko.wg.aciceri.dev:8081 ${{secrets.ATTIC_NIXFLEET_TOKEN}}
- name: Setup SSH
run: |
mkdir -p ~/.ssh
echo "${{secrets.FORGEJO_SSH_KEY}}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan github.com >> ~/.ssh/known_hosts
ssh-keyscan sisko.wg.aciceri.dev >> ~/.ssh/known_hosts
ln -s ~/.ssh/id_ed25519 /home/ccr/.ssh/id_rsa
ls -l /home/ccr/.ssh -l
- name: Build with nix
run: nix-fast-build --no-nom --systems "x86_64-linux aarch64-linux" --attic-cache "nixfleet" --skip-cached --result-file result.json || true
- name: Report checks