Remove `CI-force-{arm,linux}` label handling

These will do nothing when Homebrew/homebrew-test-bot#687 is merged.
master
Carlo Cabrera 2021-11-05 10:46:03 +08:00
parent b0b2d58211
commit bca470a3a1
1 changed files with 0 additions and 14 deletions

View File

@ -123,20 +123,6 @@ jobs:
const test_bot_dependents_args = ["--only-formulae-dependents", "--junit"]
test_bot_dependents_args.push('--testing-formulae=${{needs.tap_syntax.outputs.testing_formulae}}')
if (label_names.includes('CI-force-arm')) {
console.log('CI-force-arm label found. Not passing --skip-unbottled-arm to brew test-bot.')
} else {
console.log('No CI-force-arm label found. Passing --skip-unbottled-arm to brew test-bot.')
test_bot_formulae_args.push('--skip-unbottled-arm')
}
if (label_names.includes('CI-force-linux')) {
console.log('CI-force-linux label found. Not passing --skip-unbottled-linux to brew test-bot.')
} else {
console.log('No CI-force-linux label found. Passing --skip-unbottled-linux to brew test-bot.')
test_bot_formulae_args.push('--skip-unbottled-linux')
}
if (label_names.includes('CI-test-bot-fail-fast')) {
console.log('CI-test-bot-fail-fast label found. Passing --fail-fast to brew test-bot.')
test_bot_formulae_args.push('--fail-fast')