Skip to content

actually fix CI this time #3

actually fix CI this time

actually fix CI this time #3

Workflow file for this run

name: Build systems
on:
pull_request:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Delete huge unnecessary tools folder
run: rm -rf /opt/hostedtoolcache
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v27
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: anna328p
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Update volatile inputs
run: nix flake update keydb
- name: Build hermes configuration
run: nix build --accept-flake-config 'path:.#nixosConfigurations.hermes.config.system.build.toplevel'
- name: Confirm success
run: echo 'OK'