Files
llvm-project/.ci/green-dragon/relay-test-suite-verify-machineinstrs.groovy
Justice Adams 73e7eb4e79 [green dragon] limit relay jobs to prevent concurrent builds (#181854)
Limit the relay jobs to prevent eating up infra resources
2026-02-17 08:30:39 -08:00

24 lines
727 B
Groovy

branchName = 'main'
properties([
disableConcurrentBuilds()
])
library identifier: "zorg-shared-lib@${branchName}",
retriever: modernSCM([
$class: 'GitSCMSource',
remote: "https://github.com/llvm/llvm-zorg.git",
credentialsId: scm.userRemoteConfigs[0].credentialsId
])
jobs = [
"llvm.org/test-suite-verify-machineinstrs-x86_64-O0-g",
"llvm.org/test-suite-verify-machineinstrs-x86_64-O3",
"llvm.org/test-suite-verify-machineinstrs-x86_64h-O3",
"llvm.org/test-suite-verify-machineinstrs-aarch64-globalisel-O0-g",
"llvm.org/test-suite-verify-machineinstrs-aarch64-O0-g",
"llvm.org/test-suite-verify-machineinstrs-aarch64-O3"
]
relay.pipeline jobs