-
-
Notifications
You must be signed in to change notification settings - Fork 56
61 lines (54 loc) · 1.39 KB
/
cachix.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: "Set up binary cache & push binaries"
on:
workflow_dispatch:
pull_request:
branches:
- master
paths-ignore:
- .gitignore
- README.md
push:
branches:
- master
paths-ignore:
- .gitignore
- README.md
jobs:
cachix:
name: "Build Exposed Packages"
runs-on: ubuntu-latest
strategy:
matrix:
package:
- anyrun
- applications
- dictionary
- kidex
- randr
- rink
- shell
- stdin
- symbols
- websearch
steps:
- uses: easimon/maximize-build-space@v8
with:
overprovision-lvm: true
remove-android: true
remove-dotnet: true
remove-haskell: true
remove-docker-images: true
remove-codeql: true
- name: Checkout
uses: actions/checkout@v4
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: cachix/cachix-action@v12
with:
authToken: ${{ secrets.CACHIX_TOKEN }}
extraPullNames: nix-community
name: anyrun
- name: Set default git branch (to reduce log spam)
run: git config --global init.defaultBranch main
- name: Build anyrun from the defined matrix
run: nix build .#${{ matrix.package }} --print-build-logs