We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 410260a commit fdd652bCopy full SHA for fdd652b
1 file changed
.ci/apm-beats-update.groovy
@@ -2,7 +2,7 @@
2
@Library('apm@current') _
3
4
pipeline {
5
- agent none
+ agent { label 'master' }
6
environment {
7
REPO = 'apm-server'
8
BASE_DIR = "src/github.com/elastic/${env.REPO}"
@@ -31,7 +31,7 @@ pipeline {
31
}
32
stages {
33
stage('Filter build') {
34
- agent { label 'ubuntu && immutable' }
+ agent { label 'ubuntu-18 && immutable' }
35
when {
36
beforeAgent true
37
anyOf {
@@ -53,6 +53,7 @@ pipeline {
53
Checkout the code and stash it, to use it on other stages.
54
*/
55
stage('Checkout') {
56
+ options { skipDefaultCheckout() }
57
steps {
58
deleteDir()
59
gitCheckout(basedir: "${BEATS_DIR}", githubNotifyFirstTimeContributor: false)
0 commit comments