2023-04-22 21:29:50 +00:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: ['master']
|
2023-05-01 22:19:36 +00:00
|
|
|
paths:
|
|
|
|
- 'flake.lock'
|
2023-07-05 11:28:24 +00:00
|
|
|
workflow_dispatch:
|
2023-04-22 21:29:50 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build-x86_64-linux:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-06-27 07:45:55 +00:00
|
|
|
- name: Install Nix
|
|
|
|
uses: DeterminateSystems/nix-installer-action@v4
|
|
|
|
- name: Run the Magic Nix Cache
|
|
|
|
uses: DeterminateSystems/magic-nix-cache-action@v1
|
2023-04-22 21:29:50 +00:00
|
|
|
- uses: cachix/cachix-action@v12
|
|
|
|
with:
|
|
|
|
name: nifoc
|
|
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
2023-06-21 13:09:19 +00:00
|
|
|
- run: nix build '.#nixosConfigurations.tanker.pkgs.attic-server'
|
|
|
|
- run: nix build '.#nixosConfigurations.tanker.pkgs.attic-client'
|
|
|
|
- run: nix build '.#nixosConfigurations.tanker.pkgs.deploy-rs'
|
2023-07-05 11:27:13 +00:00
|
|
|
- run: nix build '.#nixosConfigurations.tanker.config.home-manager.users.daniel.programs.neovim.finalPackage'
|
2023-04-23 14:26:44 +00:00
|
|
|
|
|
|
|
build-arm64-linux:
|
|
|
|
runs-on: buildjet-2vcpu-ubuntu-2204-arm
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-06-27 07:45:55 +00:00
|
|
|
- name: Install Nix
|
|
|
|
uses: DeterminateSystems/nix-installer-action@v4
|
2023-04-23 14:26:44 +00:00
|
|
|
- uses: cachix/cachix-action@v12
|
|
|
|
with:
|
|
|
|
name: nifoc
|
|
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
2023-07-05 11:25:30 +00:00
|
|
|
- run: nix build '.#nixosConfigurations.argon.pkgs.attic-client'
|
|
|
|
- run: nix build '.#nixosConfigurations.argon.pkgs.deploy-rs'
|