Revert "Non optional full test runs for 2019.2.1"

This commit is contained in:
Daniel Wozniak 2019-06-10 14:28:54 -07:00 committed by GitHub
parent 6b800a2b91
commit 701218ca87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
13 changed files with 52 additions and 13 deletions

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py2', 'TEST_SUITE=py2',
'TEST_PLATFORM=centos-6', 'TEST_PLATFORM=centos-6',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py2', 'TEST_SUITE=py2',
'TEST_PLATFORM=centos-7', 'TEST_PLATFORM=centos-7',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py3', 'TEST_SUITE=py3',
'TEST_PLATFORM=centos-7', 'TEST_PLATFORM=centos-7',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py2', 'TEST_SUITE=py2',
'TEST_PLATFORM=debian-8', 'TEST_PLATFORM=debian-8',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py3', 'TEST_SUITE=py3',
'TEST_PLATFORM=debian-8', 'TEST_PLATFORM=debian-8',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py2', 'TEST_SUITE=py2',
'TEST_PLATFORM=debian-9', 'TEST_PLATFORM=debian-9',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py3', 'TEST_SUITE=py3',
'TEST_PLATFORM=debian-9', 'TEST_PLATFORM=debian-9',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py2', 'TEST_SUITE=py2',
'TEST_PLATFORM=ubuntu-1604', 'TEST_PLATFORM=ubuntu-1604',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py3', 'TEST_SUITE=py3',
'TEST_PLATFORM=ubuntu-1604', 'TEST_PLATFORM=ubuntu-1604',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py2', 'TEST_SUITE=py2',
'TEST_PLATFORM=ubuntu-1804', 'TEST_PLATFORM=ubuntu-1804',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -31,7 +34,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py3', 'TEST_SUITE=py3',
'TEST_PLATFORM=ubuntu-1804', 'TEST_PLATFORM=ubuntu-1804',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -30,7 +33,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py2', 'TEST_SUITE=py2',
'TEST_PLATFORM=windows-2016', 'TEST_PLATFORM=windows-2016',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {

View File

@ -12,6 +12,9 @@ properties([
[ [
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false $class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
], ],
parameters([
booleanParam(defaultValue: true, description: 'Run full test suite', name: 'runFull')
])
]) ])
timeout(time: global_timeout, unit: 'HOURS') { timeout(time: global_timeout, unit: 'HOURS') {
node('kitchen-slave') { node('kitchen-slave') {
@ -30,7 +33,7 @@ timeout(time: global_timeout, unit: 'HOURS') {
'TEST_SUITE=py3', 'TEST_SUITE=py3',
'TEST_PLATFORM=windows-2016', 'TEST_PLATFORM=windows-2016',
'PY_COLORS=1', 'PY_COLORS=1',
'FORCE_FULL=true', "FORCE_FULL=${params.runFull}",
]) { ]) {
// Set the GH status even before cloning the repo // Set the GH status even before cloning the repo
stage('github-pending') { stage('github-pending') {