76 lines
2.1 KiB
YAML
76 lines
2.1 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
|
|
shell: bash
|
|
run: |
|
|
set -o pipefail
|
|
nix build \
|
|
".#top.${{ matrix.system }}" \
|
|
--profile ./profile \
|
|
--fallback \
|
|
-v \
|
|
--log-format raw \
|
|
> >(tee stdout.log) 2> >(tee /tmp/nix-build-err.log >&2)
|
|
- name: Push to Cachix
|
|
if: success()
|
|
env:
|
|
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
|
|
run: |
|
|
nix build .#deploy-json --print-out-paths | cachix push hsndev
|
|
|
|
nix-build-success:
|
|
if: ${{ always() }}
|
|
needs:
|
|
- nix-build
|
|
name: Nix Build Successful
|
|
runs-on: docker
|
|
steps:
|
|
- if: ${{ contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled') }}
|
|
name: Check matrix status
|
|
run: exit 1
|
|
deploy:
|
|
if: success()
|
|
needs:
|
|
- nix-build-success
|
|
runs-on: docker
|
|
env:
|
|
CACHIX_ACTIVATE_TOKEN: ${{ secrets.CACHIX_ACTIVATE_TOKEN }}
|
|
steps:
|
|
- name: Deploy Runners
|
|
run: |
|
|
spec=$(nix build .#deploy-json --print-out-paths)
|
|
cachix deploy activate $spec
|