mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 08:35:21 +00:00
Add 'runFull' build parameter for PR tests
This commit is contained in:
parent
1394e7b84b
commit
f2137563ba
@ -1,3 +1,14 @@
|
|||||||
|
properties([
|
||||||
|
[
|
||||||
|
$class: 'ScannerJobProperty', doNotScan: false
|
||||||
|
],
|
||||||
|
[
|
||||||
|
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
|
||||||
|
],
|
||||||
|
parameters([
|
||||||
|
booleanParam(defaultValue: false, description: 'Run full test suite', name: 'runFull')
|
||||||
|
])
|
||||||
|
])
|
||||||
timeout(time: 8, unit: 'HOURS') {
|
timeout(time: 8, unit: 'HOURS') {
|
||||||
node('kitchen-slave') {
|
node('kitchen-slave') {
|
||||||
timestamps {
|
timestamps {
|
||||||
@ -16,6 +27,7 @@ timeout(time: 8, unit: 'HOURS') {
|
|||||||
'TEST_SUITE=py2',
|
'TEST_SUITE=py2',
|
||||||
'TEST_PLATFORM=centos-7',
|
'TEST_PLATFORM=centos-7',
|
||||||
'PY_COLORS=1',
|
'PY_COLORS=1',
|
||||||
|
"FORCE_FULL=${params.runFull}",
|
||||||
]) {
|
]) {
|
||||||
stage('checkout-scm') {
|
stage('checkout-scm') {
|
||||||
cleanWs notFailBuild: true
|
cleanWs notFailBuild: true
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
properties([
|
||||||
|
[
|
||||||
|
$class: 'ScannerJobProperty', doNotScan: false
|
||||||
|
],
|
||||||
|
[
|
||||||
|
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
|
||||||
|
],
|
||||||
|
parameters([
|
||||||
|
booleanParam(defaultValue: false, description: 'Run full test suite', name: 'runFull')
|
||||||
|
])
|
||||||
|
])
|
||||||
timeout(time: 6, unit: 'HOURS') {
|
timeout(time: 6, unit: 'HOURS') {
|
||||||
node('kitchen-slave') {
|
node('kitchen-slave') {
|
||||||
timestamps {
|
timestamps {
|
||||||
@ -16,6 +27,7 @@ timeout(time: 6, unit: 'HOURS') {
|
|||||||
'TEST_SUITE=py3',
|
'TEST_SUITE=py3',
|
||||||
'TEST_PLATFORM=centos-7',
|
'TEST_PLATFORM=centos-7',
|
||||||
'PY_COLORS=1',
|
'PY_COLORS=1',
|
||||||
|
"FORCE_FULL=${params.runFull}",
|
||||||
]) {
|
]) {
|
||||||
stage('checkout-scm') {
|
stage('checkout-scm') {
|
||||||
cleanWs notFailBuild: true
|
cleanWs notFailBuild: true
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
properties([
|
||||||
|
[
|
||||||
|
$class: 'ScannerJobProperty', doNotScan: false
|
||||||
|
],
|
||||||
|
[
|
||||||
|
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
|
||||||
|
],
|
||||||
|
parameters([
|
||||||
|
booleanParam(defaultValue: false, description: 'Run full test suite', name: 'runFull')
|
||||||
|
])
|
||||||
|
])
|
||||||
timeout(time: 6, unit: 'HOURS') {
|
timeout(time: 6, unit: 'HOURS') {
|
||||||
node('kitchen-slave') {
|
node('kitchen-slave') {
|
||||||
timestamps {
|
timestamps {
|
||||||
@ -16,6 +27,7 @@ timeout(time: 6, unit: 'HOURS') {
|
|||||||
'TEST_SUITE=py2',
|
'TEST_SUITE=py2',
|
||||||
'TEST_PLATFORM=ubuntu-1604',
|
'TEST_PLATFORM=ubuntu-1604',
|
||||||
'PY_COLORS=1',
|
'PY_COLORS=1',
|
||||||
|
"FORCE_FULL=${params.runFull}",
|
||||||
]) {
|
]) {
|
||||||
stage('checkout-scm') {
|
stage('checkout-scm') {
|
||||||
cleanWs notFailBuild: true
|
cleanWs notFailBuild: true
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
properties([
|
||||||
|
[
|
||||||
|
$class: 'ScannerJobProperty', doNotScan: false
|
||||||
|
],
|
||||||
|
[
|
||||||
|
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
|
||||||
|
],
|
||||||
|
parameters([
|
||||||
|
booleanParam(defaultValue: false, description: 'Run full test suite', name: 'runFull')
|
||||||
|
])
|
||||||
|
])
|
||||||
timeout(time: 6, unit: 'HOURS') {
|
timeout(time: 6, unit: 'HOURS') {
|
||||||
node('kitchen-slave') {
|
node('kitchen-slave') {
|
||||||
timestamps {
|
timestamps {
|
||||||
@ -16,6 +27,7 @@ timeout(time: 6, unit: 'HOURS') {
|
|||||||
'TEST_SUITE=py3',
|
'TEST_SUITE=py3',
|
||||||
'TEST_PLATFORM=ubuntu-1604',
|
'TEST_PLATFORM=ubuntu-1604',
|
||||||
'PY_COLORS=1',
|
'PY_COLORS=1',
|
||||||
|
"FORCE_FULL=${params.runFull}",
|
||||||
]) {
|
]) {
|
||||||
stage('checkout-scm') {
|
stage('checkout-scm') {
|
||||||
cleanWs notFailBuild: true
|
cleanWs notFailBuild: true
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
properties([
|
||||||
|
[
|
||||||
|
$class: 'ScannerJobProperty', doNotScan: false
|
||||||
|
],
|
||||||
|
[
|
||||||
|
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
|
||||||
|
],
|
||||||
|
parameters([
|
||||||
|
booleanParam(defaultValue: false, description: 'Run full test suite', name: 'runFull')
|
||||||
|
])
|
||||||
|
])
|
||||||
timeout(time: 6, unit: 'HOURS') {
|
timeout(time: 6, unit: 'HOURS') {
|
||||||
node('kitchen-slave') {
|
node('kitchen-slave') {
|
||||||
timestamps {
|
timestamps {
|
||||||
@ -15,6 +26,7 @@ timeout(time: 6, unit: 'HOURS') {
|
|||||||
'TEST_SUITE=py2',
|
'TEST_SUITE=py2',
|
||||||
'TEST_PLATFORM=windows-2016',
|
'TEST_PLATFORM=windows-2016',
|
||||||
'PY_COLORS=1',
|
'PY_COLORS=1',
|
||||||
|
"FORCE_FULL=${params.runFull}",
|
||||||
]) {
|
]) {
|
||||||
stage('checkout-scm') {
|
stage('checkout-scm') {
|
||||||
cleanWs notFailBuild: true
|
cleanWs notFailBuild: true
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
properties([
|
||||||
|
[
|
||||||
|
$class: 'ScannerJobProperty', doNotScan: false
|
||||||
|
],
|
||||||
|
[
|
||||||
|
$class: 'RebuildSettings', autoRebuild: false, rebuildDisabled: false
|
||||||
|
],
|
||||||
|
parameters([
|
||||||
|
booleanParam(defaultValue: false, description: 'Run full test suite', name: 'runFull')
|
||||||
|
])
|
||||||
|
])
|
||||||
timeout(time: 6, unit: 'HOURS') {
|
timeout(time: 6, unit: 'HOURS') {
|
||||||
node('kitchen-slave') {
|
node('kitchen-slave') {
|
||||||
timestamps {
|
timestamps {
|
||||||
@ -15,6 +26,7 @@ timeout(time: 6, unit: 'HOURS') {
|
|||||||
'TEST_SUITE=py3',
|
'TEST_SUITE=py3',
|
||||||
'TEST_PLATFORM=windows-2016',
|
'TEST_PLATFORM=windows-2016',
|
||||||
'PY_COLORS=1',
|
'PY_COLORS=1',
|
||||||
|
"FORCE_FULL=${params.runFull}",
|
||||||
]) {
|
]) {
|
||||||
stage('checkout-scm') {
|
stage('checkout-scm') {
|
||||||
cleanWs notFailBuild: true
|
cleanWs notFailBuild: true
|
||||||
|
Loading…
Reference in New Issue
Block a user