Update todos. #506
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
jobs: | |
check-matrix: | |
name: "Matrix to Check Flake" | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- name: "Set up GitHub Actions" | |
uses: actions/[email protected] | |
- name: "Set up Nix" | |
uses: cachix/install-nix-action@v27 | |
- name: "Set up Cachix" | |
uses: cachix/cachix-action@v15 | |
with: | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
name: jumper149-mensam | |
- id: set-matrix | |
name: "Generate Nix Matrix" | |
run: | | |
set -Eeu | |
matrix="$(nix eval --json '.#githubActions.matrix')" | |
echo "matrix=$matrix" >> "$GITHUB_OUTPUT" | |
check: | |
name: "Check Flake" | |
needs: check-matrix | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Set up GitHub Actions" | |
uses: actions/[email protected] | |
- name: "Set up Nix" | |
uses: cachix/install-nix-action@v27 | |
- name: "Set up Cachix" | |
uses: cachix/cachix-action@v15 | |
with: | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
name: jumper149-mensam | |
- name: "Set deployment" | |
run: echo "\"${{ matrix.deployment }}\"" > final/deployment.json | |
- name: "Check" | |
run: nix build ".#${{ matrix.attr }}" --print-build-logs | |
strategy: | |
fail-fast: false | |
matrix: ${{fromJSON(needs.check-matrix.outputs.matrix)}} | |
name: "Default" | |
on: | |
push: |