nixfleet/.forgejo/workflows/build.yaml
Andrea Ciceri 56f314a53e
Some checks failed
/ test (push) Failing after -45s
Allow CI to fetch private GitHub repos
2025-05-16 17:55:01 +02:00

21 lines
727 B
YAML

on:
push:
branches: ["*"]
jobs:
test:
runs-on: nix
steps:
- uses: actions/checkout@v4
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.SSH_KEY_FOR_GITHUB}" > ~/.ssh/id_ed25519
chmod 600 ~/.ssh/id_ed25519
ssh-keyscan github.com >> ~/.ssh/known_hosts
- 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
run: report-checks