1
0
Fork 0

restricting pipelines to run on linux only

This commit is contained in:
Christian Kühnel 2019-11-06 13:50:18 +01:00
parent 48567c02fe
commit ddd68afd8f
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
pipeline { pipeline {
agent any agent { label 'linux' }
parameters { parameters {
string(name: 'DIFF_ID') string(name: 'DIFF_ID')
string(name: 'PHID') string(name: 'PHID')

View file

@ -13,7 +13,7 @@
// limitations under the License. // limitations under the License.
pipeline { pipeline {
agent any agent { label 'linux' }
triggers { triggers {
pollSCM 'H H/2 * * *' pollSCM 'H H/2 * * *'
} }