Add test for the installer #1597
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
# SPDX-FileCopyrightText: 2022-2023 TII (SSRC) and the Ghaf contributors | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: check | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run-checks: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: cachix/install-nix-action@v24 | |
- name: Check .nix formatting | |
run: nix fmt -- --fail-on-change | |
- name: Check reuse lint | |
run: nix develop --command reuse lint | |
- name: Check nix flake show runs successfully | |
run: nix flake show | |
- name: evaluation check | |
run: nix develop --command make-checks | |
- name: Check templates | |
run: | | |
set -eux -o pipefail | |
tmp_flakes=$(mktemp -d) | |
cleanup() { rm -rf "$tmp_flakes"; } | |
trap cleanup EXIT | |
nix eval --json --apply builtins.attrNames .#templates | jq -r '.[]' | while IFS=$'\t' read -r name; do | |
nix flake new -t ".#$name" "${tmp_flakes}/${name}"; | |
if [[ "$name" == "ghaf-module" ]]; then | |
nix-instantiate --parse "${tmp_flakes}/${name}/default.nix" | |
else | |
nix flake show "${tmp_flakes}/${name}" | |
fi | |
done |