1
0
Fork 0

feat: nix-flake-build

This commit is contained in:
Daniel Kempkens 2023-09-14 15:00:07 +02:00
parent 0143401f65
commit 258838514b
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
2 changed files with 46 additions and 1 deletions

37
.github/workflows/nix-flake-build.yaml vendored Normal file
View file

@ -0,0 +1,37 @@
name: Flake Check
on:
workflow_call:
inputs:
runner:
default: ubuntu-latest-amd64
required: false
type: choice
options:
- ubuntu-latest-amd64
- ubuntu-latest-arm64
package:
default: ''
required: false
type: string
jobs:
check:
runs-on: "${{ inputs.runner }}"
steps:
- uses: actions/checkout@v3
- name: Install Nix
uses: https://github.com/DeterminateSystems/nix-installer-action@v4
with:
init: none
planner: linux
github-token: null
- name: Setup Attic
uses: https://github.com/ryanccn/attic-action@v0
with:
endpoint: ${{ secrets.ATTIC_ENDPOINT }}
cache: ${{ secrets.ATTIC_CACHE }}
token: ${{ secrets.ATTIC_TOKEN }}
- run: nix build ".#${{ inputs.package }}"

View file

@ -2,10 +2,18 @@ name: Flake Check
on:
workflow_call:
inputs:
runner:
default: ubuntu-latest-amd64
required: false
type: choice
options:
- ubuntu-latest-amd64
- ubuntu-latest-arm64
jobs:
check:
runs-on: ubuntu-latest-amd64
runs-on: "${{ inputs.runner }}"
steps:
- uses: actions/checkout@v3
- name: Install Nix