This repository has been archived on 2024-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
nix-config-tn/.github/workflows/build.yml
jahanson 771f6d9d84
Some checks failed
Build / nix-build (ubuntu-aarch64, varda) (push) Failing after 1m32s
Build / nix-build (ubuntu-x86_64, durincore) (push) Failing after 3m4s
Build / Nix Build Successful (push) Successful in 4s
debug
2024-05-20 23:04:38 -05:00

71 lines
No EOL
2.2 KiB
YAML

name: "Build"
on:
pull_request:
push:
jobs:
nix-build:
if: github.event.pull_request.draft == false
strategy:
fail-fast: false
matrix:
include:
- system: varda
os: ubuntu-aarch64
- system: durincore
os: ubuntu-x86_64
runs-on: ${{ matrix.os }}
steps:
# - name: Create nix mount point
# if: contains(matrix.os, 'ubuntu-x86_64')
# run: sudo mkdir /nix
- name: Checkout repository
uses: https://github.com/actions/checkout@v4
with:
fetch-depth: 0
# For compatibility with actions and debian
- name: Install sudo
run: apt update && apt install -y sudo
- name: Install Nix
uses: https://github.com/cachix/install-nix-action@v26
with:
extra_nix_config: |
experimental-features = nix-command flakes
nix_path: nixpkgs=channel:nixos-unstable
# - uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
- uses: https://github.com/cachix/cachix-action@v14
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 }}'
env:
USER: 'root'
- name: Garbage collect build dependencies
run: nix-collect-garbage
- name: Build new ${{ matrix.system }} system
env:
NIX_STORE_DIR: /nix/store
NIX_STATE_DIR: /nix/var/nix
NIX_LOG_DIR: /nix/var/log/nix
HOME: /root
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)
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