Add test for flake template, simplify installation procedure and remove demo #22
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" | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ "main" ] | |
| jobs: | |
| demo: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@main | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| extra-conf: "system-features = nixos-test benchmark big-parallel kvm" | |
| - name: Setup Caching | |
| uses: cachix/cachix-action@v16 | |
| with: | |
| name: selfhostblocks | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - name: Run demo test | |
| run: | | |
| (while true; do free -m; sleep 10; done)& | |
| nix run .#checks.x86_64-linux.demo | |
| template: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install Nix | |
| uses: DeterminateSystems/nix-installer-action@main | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| extra-conf: "system-features = nixos-test benchmark big-parallel kvm" | |
| - name: Setup Caching | |
| uses: cachix/cachix-action@v16 | |
| with: | |
| name: selfhostblocks | |
| authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
| - name: Run template test | |
| run: | | |
| (while true; do free -m; sleep 10; done)& | |
| nix run .#checks.x86_64-linux.template |