mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #53431 from saltstack/revert-53332-hotfix/full-test-run-2019.2.1
Revert "Non optional full test runs for 2019.2.1"
This commit is contained in:
commit
d806b58a21
13 changed files with 52 additions and 13 deletions
|
@ -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…
Add table
Reference in a new issue