forgejo-ci-runners/.forgejo/workflows/build.yaml
Joseph Hanson 9e806117ff
Some checks failed
Build / nix-build (native-aarch64, fj-hetzner-aarch64-01) (push) Failing after 13s
Build / nix-build (native-x86_64, fj-shadowfax-01) (push) Failing after 12s
split runners into separate arch types
2024-07-25 11:05:47 -05:00

57 lines
No EOL
1.8 KiB
YAML

name: "Build"
on:
pull_request:
push:
branches: ["main"]
paths:
- .forgejo/workflows/build.yaml
jobs:
nix-build:
if: github.event.pull_request.draft == false
strategy:
fail-fast: false
matrix:
include:
- system: fj-hetzner-aarch64-01
os: native-aarch64
- system: fj-shadowfax-01
os: native-x86_64
runs-on: ${{ matrix.os }}
env:
PATH: ${{ format('{0}:{1}', '/run/current-system/sw/bin', env.PATH) }}
steps:
- name: Checkout repository
uses: https://github.com/actions/checkout@v4
with:
fetch-depth: 0
- uses: https://github.com/cachix/cachix-action@v15
if: ${{ !github.event.pull_request.head.repo.fork }}
with:
name: hsndev
# If you chose API tokens for write access OR if you have a private cache
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Garbage collect build dependencies
run: nix-collect-garbage
- name: Build new ${{ matrix.system }} system and push to cachix
id: "build"
shell: bash
run: |
set -o pipefail
DRVOUT=$(nix build ".#deploy-json.${{ matrix.system }}" --print-out-paths)
::set-output name=build_output::$DRVOUT
- name: Push cache for ${{ matrix.system }} to cachix
id: "push-to-cachix"
if: success()
env:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
run: |
echo ${{steps.build_push.outputs.build_output}} | cachix push hsndev
- name: Deploy ${{ matrix.system }} runners
id: "deploy"
if: success()
env:
CACHIX_ACTIVATE_TOKEN: ${{ secrets.CACHIX_ACTIVATE_TOKEN }}
run: |
cachix deploy activate ${{ steps.build_push.outputs.build_output }}