mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 08:35:21 +00:00
Revert "Non optional full test runs for 2019.2.1"
This commit is contained in:
parent
6b800a2b91
commit
701218ca87
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
@ -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') {
|
||||||
|
Loading…
Reference in New Issue
Block a user