Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
1a9dc95
packetbeat: add npcap installer hooks
efd6 Nov 22, 2021
5c4a632
packetbeat: use a remote registry
efd6 Nov 24, 2021
b1cbe24
packetbeat: allow specification of Npcap install location
efd6 Nov 24, 2021
55731c0
packetbeat: fix error handling and make failure an option
efd6 Nov 25, 2021
c6017af
add changelog line
efd6 Nov 25, 2021
b8aac75
improve error reporting
efd6 Nov 29, 2021
a335ebc
restrict oem npcap installation to elastic licensed use
efd6 Nov 29, 2021
4a9daa2
add logic for installing from embedded byte artifact
efd6 Dec 1, 2021
4195197
make npcap installer code visible from x-pack
efd6 Dec 1, 2021
d7dffe0
allow installation of npcap from embedded npcap installer
efd6 Dec 2, 2021
b0620ae
reload npcap dll on install
efd6 Dec 2, 2021
639664a
make compilation succeed and handle un-bundled case
efd6 Dec 2, 2021
0a8979b
update docs for new approach and note limiting use to x-pack
efd6 Dec 2, 2021
b168922
remove option to retain downloaded installer file
efd6 Dec 3, 2021
becaf5e
only include Npcap config options on Windows when Elastic Licensed
efd6 Dec 9, 2021
70635df
back out remote provisioning of installer
efd6 Dec 9, 2021
f3d8867
be explicit about included files in installer
efd6 Dec 9, 2021
3be42f6
allow the tree to remain clean during packaging
efd6 Dec 9, 2021
fe57072
use config struct and allow user to block install
efd6 Dec 9, 2021
7ff30e5
test config file contents
efd6 Dec 10, 2021
f3d26e6
log pcap version for windows platforms
efd6 Jan 12, 2022
7d5778a
add logic to select crossbuilder image for npcap installer artifact
efd6 Jan 13, 2022
ec83ab2
hard code npcap version to build with and provide non-CI build option
efd6 Jan 14, 2022
4f89991
copy installer asset into source tree before starting crossbuild
efd6 Jan 17, 2022
8e370b0
use hostname to determine whether we are on a beats-ci builder
efd6 Jan 18, 2022
64decc8
x-pack/packetbeat: add license notices
efd6 Dec 3, 2021
ba59bf9
experiment DO NOT MERGE
efd6 Jan 25, 2022
1e7c68e
test: print the CI env variable
v1v Jan 25, 2022
c0df4fc
include CI in mage var dump
efd6 Jan 25, 2022
e47956b
use correct call
efd6 Jan 26, 2022
8846b90
move image selection logic into x-pack
efd6 Jan 26, 2022
460a80a
Revert "test: print the CI env variable"
efd6 Jan 26, 2022
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
5 changes: 5 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ pipeline {
stage('Checkout') {
options { skipDefaultCheckout() }
steps {
// For testing purposes, let's print the env variable CI
sh 'env | grep CI'
pipelineManager([ cancelPreviousRunningBuilds: [ when: 'PR' ] ])
deleteDir()
// Here we do a checkout into a temporary directory in order to have the
Expand Down Expand Up @@ -378,6 +380,8 @@ def packagingLinux(Map args = [:]) {
withEnv([
"PLATFORMS=${PLATFORMS}"
]) {
// for testing purposes
echo "CI=${env.CI}"
target(args)
}
}
Expand Down Expand Up @@ -997,6 +1001,7 @@ def dumpVariables(){
BEAT_VERSION: ${env.BEAT_VERSION}
BEATS: ${env.BEATS}
BUILD_DIR: ${env.BUILD_DIR}
CI: ${env.CI}
COMMIT_ID: ${env.COMMIT_ID}
COVERAGE_DIR: ${env.COVERAGE_DIR}
COVERAGE_TOOL: ${env.COVERAGE_TOOL}
Expand Down