Aoc 2024: days 13-16 #117
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cross-platform-actions/[email protected] | |
env: | |
PKG_PATH: 'https://cdn.NetBSD.org/pub/pkgsrc/packages/NetBSD/amd64/9.3/All' | |
with: | |
operating_system: netbsd | |
version: '9.3' #TODO: bump to 10.0 | |
environment_variables: PKG_PATH | |
run: | | |
sudo pkgin -y install clang libLLVM gmake diffutils && \ | |
gmake && \ | |
./runtests.sh --verbose && \ | |
./runtests.sh --verbose --jou-flags "--verbose" && \ | |
gmake clean && \ | |
./doctest.sh && \ | |
./compare_compilers.sh |