2022-02-27 21:21:12 +03:00
|
|
|
name: nix
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
2022-03-06 16:28:54 +03:00
|
|
|
build:
|
2022-02-27 21:21:12 +03:00
|
|
|
runs-on: ubuntu-latest
|
2022-03-07 14:31:50 +03:00
|
|
|
name: "nix build"
|
2022-03-02 20:48:42 +03:00
|
|
|
environment: cachix
|
2022-03-06 16:28:54 +03:00
|
|
|
timeout-minutes: 25
|
2022-02-27 21:21:12 +03:00
|
|
|
steps:
|
2022-03-03 19:42:54 +03:00
|
|
|
- uses: actions/checkout@v3
|
2022-02-27 21:21:12 +03:00
|
|
|
with:
|
|
|
|
# Nix Flakes doesn't work on shallow clones
|
|
|
|
fetch-depth: 0
|
2022-04-11 20:19:10 +03:00
|
|
|
- uses: cachix/install-nix-action@v17
|
2022-03-02 20:48:42 +03:00
|
|
|
- uses: cachix/cachix-action@v10
|
|
|
|
with:
|
|
|
|
name: zellij
|
|
|
|
# If you chose API tokens for write access OR if you have a private cache
|
|
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
2022-06-09 20:58:16 +03:00
|
|
|
- run: |
|
|
|
|
nix build || nix build --substituters 'https://cache.nixos.org' --extra-substituters ''
|