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
add attic cache
author
Thomas Stokes
date
1 year ago
(Jan 15, 2025, 11:29 PM +0800)
commit
2f487742
2f4877422645b5ec55c388a3d4e8ec84b026e58b
parent
49477b08
49477b0860a9deb84d76963a3b9a5ecfe1fe1daa
+11
-2
2 changed files
Expand all
Collapse all
Unified
Split
.github
workflows
ci.yml
flake.nix
+5
-2
.github/workflows/ci.yml
Reviewed
···
29
29
- uses: DeterminateSystems/nix-installer-action@main
30
30
- uses: DeterminateSystems/magic-nix-cache-action@main
31
31
- name: Build
32
32
-
shell: nix shell nixpkgs#nix-fast-build --command bash {0}
33
33
-
run: nix-fast-build --skip-cached --no-nom --flake '.#checks.x86_64-linux.${{ matrix.pkg }}^*'
32
32
+
shell: nix shell nixpkgs#attic-client nixpkgs#nix-fast-build --command bash {0}
33
33
+
run: |
34
34
+
attic login --set-default tombl https://nix.tombl.net '${{secrets.ATTIC_TOKEN}}'
35
35
+
attic use linuxwasm
36
36
+
nix-fast-build --skip-cached --no-nom --flake '.#checks.x86_64-linux.${{ matrix.pkg }}^*' --attic-cache=linuxwasm
+6
flake.nix
Reviewed
···
47
47
};
48
48
# keep-sorted end
49
49
};
50
50
+
51
51
+
nixConfig = {
52
52
+
extra-substituters = [ "https://nix.tombl.net/linuxwasm" ];
53
53
+
extra-trusted-keys = [ "linuxwasm:VY2O9prGSkyVY+xn1RNQV4voLVTnc2FOxAtzf8VbZaw=" ];
54
54
+
};
55
55
+
50
56
outputs =
51
57
inputs:
52
58
inputs.flake-parts.lib.mkFlake { inherit inputs; } {