Skip to content

chore(deps): lock file maintenance #794

chore(deps): lock file maintenance

chore(deps): lock file maintenance #794

Workflow file for this run

name: CI
on:
workflow_dispatch: # allows manual triggering
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linux:
name: Build Linux configs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: cachix/install-nix-action@v31
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v16
with:
name: davsanchez
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
# Commented out as this is aarch64-linux only
# - name: Home configs
# run: nix run home-manager -- build --flake ".#david@nr-vm"
# - name: NixOS config (VM)
# run: nix build --flake ".#nixosConfigurations.nr-vm-utm"
- name: Colmena configs
run: nix shell "nixpkgs#colmena" --command colmena build --on eter --no-build-on-target
macos:
name: Build macOS configs
runs-on: macos-latest
steps:
- uses: actions/checkout@v6
- uses: cachix/install-nix-action@v31
with:
github_access_token: ${{ secrets.GITHUB_TOKEN }}
- uses: cachix/cachix-action@v16
with:
name: davsanchez
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
- name: Home configs (solio)
run: nix run home-manager -- build --flake ".#david@solio"
- name: Home configs (sierpe)
run: nix run home-manager -- build --flake ".#david@sierpe"
- name: nix-darwin config (solio)
run: nix run nix-darwin -- build --flake ".#solio"
- name: nix-darwin config (sierpe)
run: nix run nix-darwin -- build --flake ".#sierpe"