Skip to content

switch to v1-build on the nix ci #145

switch to v1-build on the nix ci

switch to v1-build on the nix ci #145

Workflow file for this run

name: Nix CI
# Trigger the workflow on push or pull request, but only for the master branch
on:
pull_request:
push:
paths:
- 'lib/**'
- 'src/**'
- 'test/**'
- 'agda2hs.agda-lib'
- 'agda2hs.cabal'
- 'cabal.project'
- 'Makefile'
- 'flake.*'
- 'nix/*'
- '.github/workflows/**.yml'
branches: [master]
jobs:
nix-build:
name: ${{ matrix.pretty }} with nix (${{ matrix.derivation }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
derivation: [agda2hs, agda2hs-lib]
include:
- pretty: "Compile agda2hs"
derivation: agda2hs
- pretty: "Typecheck with Agda"
derivation: agda2hs-lib
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
- uses: DeterminateSystems/magic-nix-cache-action@v2
- run: nix build .#${{ matrix.derivation }} --print-build-logs
nix-shell:
name: "Test building inside a nix shell"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: cachix/install-nix-action@v22
- uses: DeterminateSystems/magic-nix-cache-action@v2
# for some reason this doesn't work without update, even though it doesn't download anything
- run: nix develop -Lv -c bash -c "cabal update; cabal v1-build"