diff --git a/auditbeat/Jenkinsfile.yml b/auditbeat/Jenkinsfile.yml index 755449b552c7..168ac26edd50 100644 --- a/auditbeat/Jenkinsfile.yml +++ b/auditbeat/Jenkinsfile.yml @@ -2,7 +2,6 @@ when: branches: true ## for all the branches changeset: ## when PR contains any of those entries in the changeset - "^auditbeat/.*" - - "^x-pack/auditbeat/.*" ## when changes in the x-pack/auditbeat - "@ci" ## special token regarding the changeset for the ci - "@oss" ## special token regarding the changeset for the oss comments: ## when PR comment contains any of those entries @@ -18,6 +17,8 @@ stages: make: | make -C auditbeat check; make -C auditbeat update; + make -C x-pack/auditbeat check; + make -C x-pack/auditbeat update; make check-no-changes; arm: mage: "mage build unitTest" @@ -34,16 +35,8 @@ stages: tags: true ## for all the tags build: mage: "mage build test" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags crosscompile: make: "make -C auditbeat crosscompile" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags macos: mage: "mage build unitTest" platforms: ## override default label in this specific stage. @@ -63,42 +56,22 @@ stages: - "windows-2019" #- "windows-7-32-bit" https://github.com/elastic/beats/issues/19831 #- "windows-2008-r2" https://github.com/elastic/beats/issues/19799 - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2016: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2016" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2012: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2012-r2" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-10: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-10" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-8: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-8" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags #windows-7: See https://github.com/elastic/beats/issues/19831 # mage: "mage build unitTest" # platforms: ## override default labels in this specific stage. diff --git a/filebeat/Jenkinsfile.yml b/filebeat/Jenkinsfile.yml index 1680583d1bcb..ea1215b65140 100644 --- a/filebeat/Jenkinsfile.yml +++ b/filebeat/Jenkinsfile.yml @@ -2,7 +2,6 @@ when: branches: true ## for all the branches changeset: ## when PR contains any of those entries in the changeset - "^filebeat/.*" - - "^x-pack/filebeat/.*" ## when changes in the x-pack/filebeat - "@ci" ## special token regarding the changeset for the ci - "@oss" ## special token regarding the changeset for the oss comments: ## when PR comment contains any of those entries @@ -18,6 +17,8 @@ stages: make: | make -C filebeat check; make -C filebeat update; + make -C x-pack/filebeat check; + make -C x-pack/filebeat update; make check-no-changes; arm: mage: "mage build unitTest" @@ -35,10 +36,6 @@ stages: build: mage: "mage build test" withModule: true ## run the ITs only if the changeset affects a specific module. - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags macos: mage: "mage build unitTest" platforms: ## override default label in this specific stage. @@ -57,34 +54,18 @@ stages: platforms: ## override default labels in this specific stage. - "windows-2019" #- "windows-2008-r2" https://github.com/elastic/beats/issues/19795 - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2016: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2016" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-10: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-10" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-8: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-8" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags #windows-7: See https://github.com/elastic/beats/issues/22317 # mage: "mage build unitTest" # platforms: ## override default labels in this specific stage. @@ -100,7 +81,3 @@ stages: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-7-32-bit" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags diff --git a/heartbeat/Jenkinsfile.yml b/heartbeat/Jenkinsfile.yml index ce0488be4e33..de73acd5be79 100644 --- a/heartbeat/Jenkinsfile.yml +++ b/heartbeat/Jenkinsfile.yml @@ -2,7 +2,6 @@ when: branches: true ## for all the branches changeset: ## when PR contains any of those entries in the changeset - "^heartbeat/.*" - - "^x-pack/heartbeat/.*" ## when changes in the x-pack/heartbeat - "@ci" ## special token regarding the changeset for the ci - "@oss" ## special token regarding the changeset for the oss comments: ## when PR comment contains any of those entries @@ -18,6 +17,8 @@ stages: make: | make -C heartbeat check; make -C heartbeat update; + make -C x-pack/heartbeat check; + make -C x-pack/heartbeat update; make check-no-changes; arm: mage: "mage build unitTest" @@ -34,10 +35,6 @@ stages: tags: true ## for all the tags build: mage: "mage build test" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags macos: mage: "mage build unitTest" platforms: ## override default label in this specific stage. @@ -55,63 +52,31 @@ stages: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2019" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2016: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2016" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2012: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2012-r2" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-10: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-10" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2008: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2008-r2" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-8: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-8" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-7: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-7" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-7-32: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-7-32-bit" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags diff --git a/journalbeat/Jenkinsfile.yml b/journalbeat/Jenkinsfile.yml index 148db6aed528..9e2cebeb2586 100644 --- a/journalbeat/Jenkinsfile.yml +++ b/journalbeat/Jenkinsfile.yml @@ -2,7 +2,6 @@ when: branches: true ## for all the branches changeset: ## when PR contains any of those entries in the changeset - "^journalbeat/.*" - - "^x-pack/journalbeat/.*" ## when changes in the x-pack/journalbeat - "@ci" ## special token regarding the changeset for the ci - "@oss" ## special token regarding the changeset for the oss comments: ## when PR comment contains any of those entries @@ -18,6 +17,8 @@ stages: make: | make -C journalbeat check; make -C journalbeat update; + make -C x-pack/journalbeat check; + make -C x-pack/journalbeat update; make check-no-changes; arm: mage: "mage build unitTest" @@ -34,7 +35,3 @@ stages: tags: true ## for all the tags unitTest: mage: "mage build unitTest" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags diff --git a/libbeat/Jenkinsfile.yml b/libbeat/Jenkinsfile.yml index 1f9441431386..42ca46b2afbd 100644 --- a/libbeat/Jenkinsfile.yml +++ b/libbeat/Jenkinsfile.yml @@ -1,7 +1,6 @@ when: branches: true ## for all the branches changeset: ## when PR contains any of those entries in the changeset - - "^x-pack/libbeat/.*" ## when changes in the x-pack/libbeat - "@ci" ## special token regarding the changeset for the ci - "@oss" ## special token regarding the changeset for the oss comments: ## when PR comment contains any of those entries @@ -17,6 +16,8 @@ stages: make: | make -C libbeat check; make -C libbeat update; + make -C x-pack/libbeat check; + make -C x-pack/libbeat update; make check-no-changes; arm: mage: "mage build unitTest" @@ -31,19 +32,7 @@ stages: - "armTest" build: mage: "mage build test" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags crosscompile: make: "make -C libbeat crosscompile" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags stress-tests: make: "make STRESS_TEST_OPTIONS='-timeout=20m -race -v -parallel 1' -C libbeat stress-tests" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags diff --git a/metricbeat/Jenkinsfile.yml b/metricbeat/Jenkinsfile.yml index 588c6bbbdb80..2bdb1218a5d2 100644 --- a/metricbeat/Jenkinsfile.yml +++ b/metricbeat/Jenkinsfile.yml @@ -2,7 +2,6 @@ when: branches: true ## for all the branches changeset: ## when PR contains any of those entries in the changeset - "^metricbeat/.*" - - "^x-pack/metricbeat/.*" ## when changes in the x-pack/metricbeat - "@ci" ## special token regarding the changeset for the ci - "@oss" ## special token regarding the changeset for the oss comments: ## when PR comment contains any of those entries @@ -18,33 +17,19 @@ stages: make: | make -C metricbeat check; make -C metricbeat update; + make -C x-pack/metricbeat check; + make -C x-pack/metricbeat update; make check-no-changes; unitTest: mage: "mage build unitTest" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags goIntegTest: mage: "mage goIntegTest" withModule: true - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags pythonIntegTest: mage: "mage pythonIntegTest" withModule: true - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags crosscompile: make: "make -C metricbeat crosscompile" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags macos: mage: "mage build unitTest" platforms: ## override default label in this specific stage. @@ -62,63 +47,31 @@ stages: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2019" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2016: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2016" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2012: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2012-r2" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-10: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-10" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-8: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-8" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2008: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2008-r2" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-7: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-7" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-7-32: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-7-32-bit" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags diff --git a/packetbeat/Jenkinsfile.yml b/packetbeat/Jenkinsfile.yml index b79b87b6d883..c22bb66e57cc 100644 --- a/packetbeat/Jenkinsfile.yml +++ b/packetbeat/Jenkinsfile.yml @@ -2,7 +2,6 @@ when: branches: true ## for all the branches changeset: ## when PR contains any of those entries in the changeset - "^packetbeat/.*" - - "^x-pack/packetbeat/.*" ## when changes in the x-pack/packetbeat - "@ci" ## special token regarding the changeset for the ci - "@oss" ## special token regarding the changeset for the oss comments: ## when PR comment contains any of those entries @@ -18,6 +17,8 @@ stages: make: | make -C packetbeat check; make -C packetbeat update; + make -C x-pack/packetbeat check; + make -C x-pack/packetbeat update; make check-no-changes; arm: mage: "mage build unitTest" @@ -34,10 +35,6 @@ stages: tags: true ## for all the tags build: mage: "mage build test" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags macos: mage: "mage build unitTest" platforms: ## override default label in this specific stage. @@ -55,63 +52,31 @@ stages: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2019" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2016: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2016" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2012: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2012-r2" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-10: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-10" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2008: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2008-r2" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-8: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-8" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-7: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-7" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-7-32: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-7-32-bit" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags diff --git a/winlogbeat/Jenkinsfile.yml b/winlogbeat/Jenkinsfile.yml index bcef5172022d..44ee6c06513c 100644 --- a/winlogbeat/Jenkinsfile.yml +++ b/winlogbeat/Jenkinsfile.yml @@ -2,7 +2,6 @@ when: branches: true ## for all the branches changeset: ## when PR contains any of those entries in the changeset - "^winlogbeat/.*" - - "^x-pack/winlogbeat/.*" ## when changes in the x-pack/winlogbeat - "@ci" ## special token regarding the changeset for the ci - "@oss" ## special token regarding the changeset for the oss comments: ## when PR comment contains any of those entries @@ -18,67 +17,37 @@ stages: make: | make -C winlogbeat check; make -C winlogbeat update; + make -C x-pack/winlogbeat check; + make -C x-pack/winlogbeat update; make check-no-changes; crosscompile: make: "make -C winlogbeat crosscompile" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2019" - "windows-2008-r2" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2016: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2016" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-2012: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-2012-r2" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-10: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-10" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-8: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-8" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-7: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-7" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags windows-7-32: mage: "mage build unitTest" platforms: ## override default labels in this specific stage. - "windows-7-32-bit" - when: ## Override the top-level when. - not_changeset_full_match: "^x-pack/.*" ## Disable the stage if ONLY changes for the x-pack - branches: true ## for all the branches - tags: true ## for all the tags diff --git a/x-pack/auditbeat/Jenkinsfile.yml b/x-pack/auditbeat/Jenkinsfile.yml index 98feb4541911..deb1fdddd3a4 100644 --- a/x-pack/auditbeat/Jenkinsfile.yml +++ b/x-pack/auditbeat/Jenkinsfile.yml @@ -17,6 +17,8 @@ stages: make: | make -C x-pack/auditbeat check; make -C x-pack/auditbeat update; + make -C auditbeat check; + make -C auditbeat update; make check-no-changes; arm: mage: "mage build unitTest" diff --git a/x-pack/filebeat/Jenkinsfile.yml b/x-pack/filebeat/Jenkinsfile.yml index 2b72ef8ec6f1..0581f2cd8600 100644 --- a/x-pack/filebeat/Jenkinsfile.yml +++ b/x-pack/filebeat/Jenkinsfile.yml @@ -17,6 +17,8 @@ stages: make: | make -C x-pack/filebeat check; make -C x-pack/filebeat update; + make -C filebeat check; + make -C filebeat update; make check-no-changes; arm: mage: "mage build unitTest" diff --git a/x-pack/metricbeat/Jenkinsfile.yml b/x-pack/metricbeat/Jenkinsfile.yml index c070fe47c1ee..90dcd4ca5602 100644 --- a/x-pack/metricbeat/Jenkinsfile.yml +++ b/x-pack/metricbeat/Jenkinsfile.yml @@ -17,6 +17,8 @@ stages: make: | make -C x-pack/metricbeat check; make -C x-pack/metricbeat update; + make -C metricbeat check; + make -C metricbeat update; make check-no-changes; unitTest: mage: "mage build unitTest" diff --git a/x-pack/packetbeat/Jenkinsfile.yml b/x-pack/packetbeat/Jenkinsfile.yml index 9846a3f67e2a..21ee0a76b7d6 100644 --- a/x-pack/packetbeat/Jenkinsfile.yml +++ b/x-pack/packetbeat/Jenkinsfile.yml @@ -15,9 +15,11 @@ platform: "immutable && ubuntu-18" ## default label for all the stages stages: Lint: mage: | - mage check; - mage update; - make: "make check-no-changes" + mage -C x-pack/packetbeat check; + mage -C x-pack/packetbeat update; + make -C packetbeat check; + make -C packetbeat update; + make check-no-changes; arm: mage: "mage build unitTest" platforms: ## override default label in this specific stage. diff --git a/x-pack/winlogbeat/Jenkinsfile.yml b/x-pack/winlogbeat/Jenkinsfile.yml index 5ca64db11f53..0fcde2f326ce 100644 --- a/x-pack/winlogbeat/Jenkinsfile.yml +++ b/x-pack/winlogbeat/Jenkinsfile.yml @@ -17,6 +17,8 @@ stages: make: | make -C x-pack/winlogbeat check; make -C x-pack/winlogbeat update; + make -C winlogbeat check; + make -C winlogbeat update; make check-no-changes; platforms: ## override default labels in this specific stage. - "immutable && ubuntu-18"