Skip to content

Disable Nix sandbox in CI #72

Disable Nix sandbox in CI

Disable Nix sandbox in CI #72

Workflow file for this run

name: Run
on:
push:
jobs:
run:
runs-on: ${{ matrix.os }}
name: Day ${{ matrix.day }} (${{ matrix.os }})
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest']
day: ['01', '02', '03', '04', '05', '06', '07', '08', '09']
exclude:
# TODO: Investigate how we could build this with GNUStep
- os: 'ubuntu-latest'
day: '08'
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-unstable
- name: Build
# We have to disable sandboxing to allow derivations to access the network
# during builds. This is required e.g. to build day 9's PAKCS with Haskell
# Stack, which downloads its own GHC, packages etc.
run: nix-build --option sandbox false
working-directory: 'day${{ matrix.day }}'
- name: Run with input
run: 'result/bin/day${{ matrix.day }} resources/input.txt'
working-directory: 'day${{ matrix.day }}'