mochi/.forgejo/workflows/build.yaml
Joseph Hanson d5c4587b18
Some checks failed
Build / nix-build (native-x86_64, telchar) (push) Failing after 1m3s
Build / nix-build (native-aarch64, varda) (push) Successful in 1m31s
...
2024-07-28 19:23:15 -05:00

71 lines
2.3 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: varda
os: native-aarch64
- system: telchar
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
- name: Set up ssh key folder
run: |
mkdir -p $HOME/.ssh
chmod 700 $HOME/.ssh
# - name: Write ssh key
# id: sshkey
# uses: https://github.com/timheuer/base64-to-file@v1
# with:
# encodedString: "${{ secrets.SSH_USER }}"
# fileName: id_ed25519
# fileDir: $HOME/.ssh/
- name: Make id_ed25519 user only
run: |
# output to null to avoid leaking the key
# echo ${{ secrets.SSH_USER }} | base64 -d > $HOME/.ssh/id_ed25519 >/dev/null 2>&1
# echo "${{ secrets.SSH_USER }}" > $HOME/.ssh/id_ed25519 >/dev/null 2>&1
ls -la $HOME/.ssh
# chmod 600 $HOME/.ssh/id_ed25519
- 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 }}'
# env:
# USER: 'root'
- 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 ".#top.${{ matrix.system }}" --json | jq -r .[].drvPath | cachix push hsndev