-
Notifications
You must be signed in to change notification settings - Fork 44
133 lines (129 loc) · 3.66 KB
/
build.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
spell-fmt-check:
uses: unionlabs/workflows/.github/workflows/build.yml@ecdf0239c8a72a9fd2efdab91aa041698cd670e0
secrets:
nixbuild_token: ${{ secrets.nixbuild_token }}
access-tokens: github.com=${{ secrets.GITHUB_TOKEN }}
with:
filter_builds: |
(
(.top_attr == "checks") and
(.system == "x86_64-linux") and
(
(
# Do not run on both systems
[.attr] | inside(
[
"spellcheck",
"treefmt-check"
]
)
)
)
)
build:
needs: [ spell-fmt-check ]
if: |
!cancelled()
&& (contains(needs.*.result, 'success') || github.event.pull_request.draft == true)
uses: unionlabs/workflows/.github/workflows/build.yml@ecdf0239c8a72a9fd2efdab91aa041698cd670e0
secrets:
nixbuild_token: ${{ secrets.nixbuild_token }}
access-tokens: github.com=${{ secrets.GITHUB_TOKEN }}
with:
filter_builds: |
(
(.top_attr == "packages" or .top_attr == "devShells") and
(.system == "x86_64-linux" or .system == "aarch64-linux") and
(
(
# Do not run on both systems
[.attr] | inside(
[
"devnet",
"devnet-cosmos",
"devnet-evm",
"docgen",
"download-circuit",
"evm",
"evm-contracts",
"fuzz",
"generate-evm-proto",
"generate-prover-proto",
"generate-rust-proto",
"gen-proto",
"githook",
"go-vendor",
"rust-proto",
"site-static",
"site-server",
"voyager-queue"
]
)
) or
(.attr | test("evm-.*-deploy")) |
not
) or
(
# x86_64 only
.system == "x86_64-linux" and
(
[.attr] | inside(
[
"devnet",
"devnet-cosmos",
"devnet-evm",
"evm",
"evm-contracts"
]
)
)
)
)
test:
needs: [ spell-fmt-check ]
if: |
!cancelled()
&& (contains(needs.*.result, 'success') || github.event.pull_request.draft == true)
uses: unionlabs/workflows/.github/workflows/build.yml@ecdf0239c8a72a9fd2efdab91aa041698cd670e0
secrets:
nixbuild_token: ${{ secrets.nixbuild_token }}
access-tokens: github.com=${{ secrets.GITHUB_TOKEN }}
with:
filter_builds: |
(
(.top_attr == "checks") and
(.system == "x86_64-linux") and
(
(
# Do not run
[.attr] | inside(
[
"ensure-blocks",
"epoch-completes",
"forced-set-rotation",
"pre-commit",
"pre-commit-check",
"sepolia-runs",
"spellcheck",
"treefmt-check",
"union-runs",
"upgrade-from-genesis",
"virtualisation-works",
"voyager-queue"
]
)
) | not
)
)