File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 154
154
155
155
hydraJobs =
156
156
let
157
- nonRequiredPaths = [
158
- ".*musl\\ .devShells\\ ..*"
157
+ # TODO: macOS builders are resource-constrained and cannot run the detabase
158
+ # integration tests. Add these back when we get beefier builders.
159
+ nonRequiredMacOSPaths = [
160
+ "checks.cardano-chain-gen:test:cardano-chain-gen"
161
+ "ghc927.checks.cardano-chain-gen:test:cardano-chain-gen"
159
162
] ;
163
+
164
+ nonRequiredPaths =
165
+ if hostPlatform . isMacOS then
166
+ nonRequiredMacOSPaths
167
+ else [ ] ;
168
+
160
169
in
161
170
pkgs . callPackages iohkNix . utils . ciJobsAggregates
162
171
{
163
172
inherit ciJobs ;
164
- nonRequiredPaths = map ( r : p : builtins . match r p != null ) nonRequiredPaths ;
173
+ nonRequiredPaths = map lib . hasPrefix nonRequiredPaths ;
165
174
} // ciJobs ;
166
-
167
175
} ) // {
168
176
169
177
# allows precise paths (avoid fallbacks) with nix build/eval:
You can’t perform that action at this time.
0 commit comments