host nameserver on NixOS #1855
Workflow file for this run
This file contains hidden or 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
| name: Build Hosts | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| merge_group: | |
| concurrency: | |
| group: build-${{ github.ref || github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-flake: | |
| runs-on: ci-ocf-nix-build | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: DeterminateSystems/flake-checker-action@v9 | |
| build: | |
| runs-on: ci-ocf-nix-build | |
| needs: check-flake | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build with colmena | |
| # `--evaluator streaming` would be preferable, but it results in | |
| # colmena exiting as successful after 2 seconds without doing anything, | |
| # even if nix-eval-jobs is installed. | |
| run: nix develop -c nix-fast-build --no-nom --flake .#colmenaHive.toplevel |