forgejo-ci-runners/.forgejo/workflows/build.yaml

57 lines
1.8 KiB
YAML
Raw Normal View History

2024-05-26 19:31:21 -05:00
name: "Build"
on:
pull_request:
2024-07-25 08:25:40 -05:00
push:
branches: ["main"]
paths:
- .forgejo/workflows/build.yaml
2024-05-26 19:31:21 -05:00
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
2024-07-25 11:05:47 -05:00
- name: Build new ${{ matrix.system }} system and push to cachix
id: "build"
2024-05-26 19:31:21 -05:00
shell: bash
run: |
set -o pipefail
2024-07-25 11:05:47 -05:00
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"
2024-05-26 19:31:21 -05:00
if: success()
env:
CACHIX_AUTH_TOKEN: ${{ secrets.CACHIX_AUTH_TOKEN }}
2024-07-25 08:25:48 -05:00
run: |
2024-07-25 11:05:47 -05:00
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 }}
2024-07-25 10:09:09 -05:00
run: |
2024-07-25 11:05:47 -05:00
cachix deploy activate ${{ steps.build_push.outputs.build_output }}