build: Add util.mkApplication #614
Workflow file for this run
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
name: Nix Flake actions | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- main | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
jobs: | |
nix-matrix: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: pyproject-nix | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- id: set-matrix | |
name: Generate Nix Matrix | |
run: | | |
set -Eeu | |
echo "matrix=$(nix eval --json '.#githubActions.matrix')" >> "$GITHUB_OUTPUT" | |
nix-build: | |
name: ${{ matrix.name }} (${{ matrix.system }}) | |
needs: nix-matrix | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: ${{fromJSON(needs.nix-matrix.outputs.matrix)}} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: pyproject-nix | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- run: nix build -L ".#${{ matrix.attr }}" | |
nix-unit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: pyproject-nix | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- name: Build shell | |
run: nix develop -c true | |
- name: Run tests | |
run: nix develop -c nix-unit --flake .#libTests | |
flake-templates: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v30 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: pyproject-nix | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- id: set-matrix | |
name: Evaluate flake templates | |
run: | | |
set -Eeu | |
for template in templates/*; do | |
echo "Evaluating $template" | |
nix flake show --all-systems --override-input pyproject-nix . "./$template" | |
done | |
collect: | |
runs-on: ubuntu-latest | |
needs: | |
- nix-unit | |
- nix-build | |
- flake-templates | |
steps: | |
- run: true | |
build-pages: | |
if: github.ref == 'refs/heads/master' | |
runs-on: ubuntu-latest | |
needs: collect | |
steps: | |
- uses: cachix/install-nix-action@v30 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: pyproject-nix | |
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}' | |
- uses: actions/[email protected] | |
- name: Run build | |
run: nix build -L '.#doc' | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v3 | |
with: | |
path: ./result | |
deploy-pages: | |
if: github.ref == 'refs/heads/master' | |
needs: build-pages | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v4 |