2023-04-15 08:36:15 +00:00
|
|
|
name: "Validate flake & check documentation"
|
2023-04-15 08:34:34 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- docs/**
|
|
|
|
jobs:
|
2023-04-15 08:36:15 +00:00
|
|
|
flake-docs-check:
|
|
|
|
name: Validate Flake Documentation
|
2023-04-15 08:34:34 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
package:
|
2023-10-01 13:17:48 +00:00
|
|
|
- docs
|
|
|
|
- docs-html
|
|
|
|
- docs-manpages
|
|
|
|
- docs-json
|
2023-04-15 08:34:34 +00:00
|
|
|
steps:
|
2023-12-07 19:56:23 +00:00
|
|
|
- uses: easimon/maximize-build-space@v10
|
2023-04-15 08:38:51 +00:00
|
|
|
with:
|
|
|
|
overprovision-lvm: true
|
|
|
|
remove-android: true
|
|
|
|
remove-dotnet: true
|
|
|
|
remove-haskell: true
|
2023-10-01 13:17:48 +00:00
|
|
|
|
2023-10-20 09:24:24 +00:00
|
|
|
- name: Install Nix
|
|
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
|
|
- uses: DeterminateSystems/magic-nix-cache-action@main
|
2023-04-15 08:38:51 +00:00
|
|
|
|
2023-10-20 09:04:31 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-10-01 13:17:48 +00:00
|
|
|
name: Checkout
|
|
|
|
|
2023-04-15 08:34:34 +00:00
|
|
|
- name: Set default git branch (to reduce log spam)
|
|
|
|
run: git config --global init.defaultBranch main
|
2023-10-01 13:17:48 +00:00
|
|
|
|
2023-10-20 09:24:24 +00:00
|
|
|
- name: Build documentation packages
|
2023-04-15 08:34:34 +00:00
|
|
|
run: nix build .#${{ matrix.package }} --print-build-logs
|
2023-10-01 13:17:48 +00:00
|
|
|
|
2024-01-16 11:32:38 +00:00
|
|
|
- name: Get current date
|
|
|
|
id: get-date
|
|
|
|
# output format: 2023-12-22-120000
|
|
|
|
run: echo "date=$(date +'%Y-%m-%d-%H%M%S')" >> ${GITHUB_OUTPUT}
|
|
|
|
|
2023-05-03 10:32:45 +00:00
|
|
|
- name: Upload doc artifacts
|
2023-12-14 19:32:56 +00:00
|
|
|
uses: actions/upload-artifact@v4
|
2023-05-03 10:32:45 +00:00
|
|
|
with:
|
2024-01-16 11:32:38 +00:00
|
|
|
name: "${{ matrix.package }}"
|
2024-04-28 17:35:31 +00:00
|
|
|
path: result/share/doc/nvf
|