restricting pipelines to run on linux only
This commit is contained in:
parent
48567c02fe
commit
ddd68afd8f
2 changed files with 2 additions and 2 deletions
2
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
2
Jenkins/Phabricator-pipeline/Jenkinsfile
vendored
|
@ -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')
|
||||||
|
|
2
Jenkins/master-pipeline/Jenkinsfile
vendored
2
Jenkins/master-pipeline/Jenkinsfile
vendored
|
@ -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 * * *'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue