Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env groovy

@Library('apm@current') _
@Library('apm@test/single-module') _
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For testing purposes


import groovy.transform.Field

Expand Down Expand Up @@ -1163,6 +1163,10 @@ def loadConfigEnvVars(){

// Skip all the stages for changes only related to the documentation
env.ONLY_DOCS = isDocChangedOnly()

// Speed up the CI by running only if the changeset affects a specific module.
// TODO: exclude should be only skip the Jenkinsfile
env.MODULE = getBeatsModule(pattern: '[a-z0-9]+beat\\/module\\/([^\\/]+)\\/.*', exclude: '(.*\\.(asciidoc|png)|Jenkinsfile)')
}

/**
Expand Down
Empty file.