enable motd for hosts, add custom motd to carp and koi #1466
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: | |
| push: | |
| branches: | |
| - main | |
| 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 colmena build --keep-result --nix-option keep-going true -v |