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: only build uncached packages
author
Thomas Stokes
date
1 year ago
(Jan 17, 2025, 11:26 PM +0800)
commit
ee2495cc
ee2495cce5bbea2228b4908acbe5accdf75112ed
parent
864c7ca6
864c7ca6ff51d8c2a188753313ae55521d649636
+3
-1
2 changed files
Expand all
Collapse all
Unified
Split
.github
workflows
ci.yml
flake
shell.nix
+1
-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 .#checks.x86_64-linux --json --apply builtins.attrNames)"
19
19
+
matrix=$(nix-eval-jobs --flake .#checks.x86_64-linux --check-cache-status | jq -sc '[.[]|select(.isCached|not).attr]')
20
20
echo "matrix=$matrix" >> "$GITHUB_OUTPUT"
21
21
22
22
build:
+2
flake/shell.nix
Reviewed
···
8
8
make-shells.ci = {
9
9
packages = with pkgs; [
10
10
attic-client
11
11
+
jq
12
12
+
nix-eval-jobs
11
13
nix-fast-build
12
14
];
13
15
};