49 lines
1.7 KiB
YAML
49 lines
1.7 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: ['master']
|
|
paths:
|
|
- 'flake.lock'
|
|
- 'home/programs/nvim/plugins.nix'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-x86_64-linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Check Flake
|
|
uses: DeterminateSystems/flake-checker-action@v5
|
|
with:
|
|
send-statistics: false
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@v4
|
|
- name: Run the Magic Nix Cache
|
|
uses: DeterminateSystems/magic-nix-cache-action@v1
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: nifoc
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- run: nix flake check
|
|
- run: nix build '.#nixosConfigurations.tanker.pkgs.attic-server'
|
|
- run: nix build '.#nixosConfigurations.tanker.pkgs.attic-client'
|
|
- run: nix build '.#nixosConfigurations.tanker.pkgs.deploy-rs'
|
|
- run: nix build '.#nixosConfigurations.tanker.config.services.nginx.package'
|
|
- run: nix build '.#nixosConfigurations.tanker.config.home-manager.users.daniel.programs.neovim.finalPackage'
|
|
|
|
build-arm64-linux:
|
|
runs-on: buildjet-2vcpu-ubuntu-2204-arm
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@v4
|
|
- uses: cachix/cachix-action@v12
|
|
with:
|
|
name: nifoc
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- run: nix flake check
|
|
- run: nix build '.#nixosConfigurations.argon.pkgs.attic-client'
|
|
- run: nix build '.#nixosConfigurations.argon.pkgs.deploy-rs'
|
|
- run: nix build '.#nixosConfigurations.argon.config.services.nginx.package'
|
|
- run: nix build '.#nixosConfigurations.argon.config.home-manager.users.daniel.programs.neovim.finalPackage'
|