mirror of
https://github.com/CatalaLang/catala.git
synced 2024-11-08 07:51:43 +03:00
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
name: "nix CI"
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
workflow_dispatch:
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: cachix/install-nix-action@v18
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- id: cache-restore
|
|
uses: actions/cache/restore@v3
|
|
with:
|
|
path: nix-store.nar
|
|
key: nix-store-nar-${{ hashFiles('flake.lock') }}
|
|
- if: steps.cache-restore.outputs.cache-hit == 'true'
|
|
run: |
|
|
nix-store --import < nix-store.nar
|
|
rm nix-store.nar
|
|
|
|
- run: nix develop
|
|
- run: nix build
|
|
- run: nix build .#clerk
|
|
|
|
- name: dump store
|
|
if: steps.cache-restore.outputs.cache-hit == 'false'
|
|
run: nix-store --export $(nix-store -qR $(nix print-dev-env --json | jq .variables.prefix.value -r)) > nix-store.nar
|
|
- name: save current cache
|
|
if: steps.cache-restore.outputs.cache-hit == 'false'
|
|
uses: actions/cache/save@v3
|
|
id: cache
|
|
with:
|
|
path: nix-store.nar
|
|
key: nix-store-nar-${{ hashFiles('flake.lock') }}
|
|
|