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: remove nix-fast-build (#48)
author
Thomas Stokes
committer
GitHub
date
1 year ago
(Apr 18, 2025, 9:30 AM UTC)
commit
aafeea5a
aafeea5a821d583c90071f2a03305bb31f4e9796
parent
fc0041b3
fc0041b3bf8008cd26adf82ee90498a3a5856987
+4
-4
2 changed files
Expand all
Collapse all
Unified
Split
.github
workflows
ci.yml
flake
shell.nix
+4
-3
.github/workflows/ci.yml
Reviewed
···
15
15
eval "$(nix print-dev-env .#ci)"
16
16
matrix="$(nix-eval-jobs --flake .#checks.x86_64-linux --check-cache-status | jq -sc '
17
17
[
18
18
-
.[]
19
19
-
| select(.isCached | not).attr
18
18
+
.[]
19
19
+
| select(.isCached | not).attr
20
20
| select(test("-shell$") | not)
21
21
]
22
22
| if length > 0 then . else ["pre-commit"] end
···
38
38
run: |
39
39
eval "$(nix print-dev-env .#ci)"
40
40
attic login --set-default tombl https://nix.tombl.net '${{secrets.ATTIC_TOKEN}}'
41
41
-
nix-fast-build --skip-cached --no-nom --flake '.#checks.x86_64-linux.${{ matrix.pkg }}^*' --attic-cache=linuxwasm
41
41
+
nix build '.#checks.x86_64-linux.${{ matrix.pkg }}^*'
42
42
+
attic push linuxwasm ./result*
42
43
43
44
deploy:
44
45
needs: build
-1
flake/shell.nix
Reviewed
···
18
18
attic-client
19
19
jq
20
20
nix-eval-jobs
21
21
-
nix-fast-build
22
21
];
23
22
};
24
23
};