Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only build hydraJobs, the rest are covered in CI
Browse files Browse the repository at this point in the history
grahamc committed Jul 9, 2024
1 parent 6c96c8a commit 230a31a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/matrix.sh
Original file line number Diff line number Diff line change
@@ -15,8 +15,9 @@ nix flake show --json --all-systems \
' \
'
map(select(.[0][-1] == "type" and .[1] == "derivation")
| .[0][0:-1]
| select(.[-1] != "all")
| .[0][0:-1] # Take each attribute name and drop `type`
| select(.[-1] != "all") # Skip attributes which are `all` jobs, presumably combining other jobs
| select(.[0] == "hydraJobs") # Select the hydraJobs which are not typically run in CI
| {
attribute: . | join("."),
"nix-system": .[-2],

0 comments on commit 230a31a

Please sign in to comment.