Skip to content

Set up day 12 in MoonScript #97

Set up day 12 in MoonScript

Set up day 12 in MoonScript #97

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', '10', '11', '12']
exclude:
# TODO: Investigate how we could build this with GNUStep
- os: 'ubuntu-latest'
day: '08'
# TODO: Investigate why Curry fails in the post-installation fixup:
# https://github.com/fwcd/advent-of-code-2023/actions/runs/7153749665/job/19480549989
- os: 'ubuntu-latest'
day: '09'
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 -v --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 }}'