All checks were successful
Test / Create distribution (push) Successful in 1m2s
Test / Sandbox (push) Successful in 2m46s
Test / Hakurei (push) Successful in 3m39s
Test / ShareFS (push) Successful in 3m42s
Test / Sandbox (race detector) (push) Successful in 5m1s
Test / Hakurei (race detector) (push) Successful in 6m7s
Test / Flake checks (push) Successful in 1m20s
This enables temporarily avoiding a broken release on specific targets. Signed-off-by: Ophestra <cat@gensokyo.uk>
13 lines
355 B
Go
13 lines
355 B
Go
package rosa
|
|
|
|
// clangPatches are patches applied to the LLVM source tree for building clang.
|
|
var clangPatches [][2]string
|
|
|
|
// one version behind, latest fails 5 tests with 2 flaky on arm64
|
|
const (
|
|
llvmVersionMajor = "21"
|
|
llvmVersion = llvmVersionMajor + ".1.8"
|
|
|
|
llvmChecksum = "8SUpqDkcgwOPsqHVtmf9kXfFeVmjVxl4LMn-qSE1AI_Xoeju-9HaoPNGtidyxyka"
|
|
)
|