-
Notifications
You must be signed in to change notification settings - Fork 2.1k
146 lines (142 loc) · 4.17 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
134
135
136
137
138
139
140
141
142
143
144
145
146
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@cea8a10eb93975dfe94f2339c3d356e787465df0
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@cea8a10eb93975dfe94f2339c3d356e787465df0
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(
[
"uniond-release",
"devnet",
"devnet-simd",
"devnet-union",
"devnet-eth",
"docgen",
"download-circuit",
"evm",
"evm-contracts",
"fuzz",
"generate-sol-proto",
"generate-prover-proto",
"generate-rust-proto",
"gen-proto",
"githook",
"go-vendor",
"rust-proto",
"site-static",
"site-server",
"voyager-queue",
"sqlx-cli",
"fetchRustStdCargoLock",
"fetch-membership-data",
"gen-eth-lc-update-test-data",
"impure-site-deploy",
"rust-sol-bindings",
"vendor-tools",
"impure-site-deploy",
"generate-rust-sol-bindings"
]
)
) or
(.attr | test("eth-.*-deploy")) |
not
) or
(
# x86_64 only
.system == "x86_64-linux" and
(
[.attr] | inside(
[
"devnet",
"devnet-simd",
"devnet-union",
"devnet-eth",
"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@cea8a10eb93975dfe94f2339c3d356e787465df0
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",
"upgrade-with-tokenfactory-state",
"virtualisation-works",
"voyager-queue"
]
)
) | not
)
)