alpha
Login
or
Join now
tombl.dev
/
distro
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
ci: don't build -shell attrs
author
Thomas Stokes
date
1 year ago
(Jan 18, 2025, 9:20 PM +0800)
commit
4b7f3450
4b7f3450e6565c3c31132d3d626969e10ced499a
parent
92d9cc0a
92d9cc0a8deedf394863ed84ef80a6d1c6a8b8d5
+8
-1
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
ci.yml
+8
-1
.github/workflows/ci.yml
Reviewed
···
16
16
id: list
17
17
run: |
18
18
eval "$(nix print-dev-env .#ci)"
19
19
-
matrix=$(nix-eval-jobs --flake .#checks.x86_64-linux --check-cache-status | jq -sc '[.[]|select(.isCached|not).attr]' | jq -c 'if length > 0 then . else ["pre-commit"] end')
19
19
+
matrix="$(nix-eval-jobs --flake .#checks.x86_64-linux --check-cache-status | jq -sc '
20
20
+
[
21
21
+
.[]
22
22
+
| select(.isCached | not).attr
23
23
+
| select(test("-shell$") | not)
24
24
+
]
25
25
+
| if length > 0 then . else ["pre-commit"] end
26
26
+
')"
20
27
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
21
28
22
29
build: