-
Notifications
You must be signed in to change notification settings - Fork 526
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update beats framework to 07ed0dabcaab (#3650)
- Loading branch information
1 parent
e45097f
commit bc56b71
Showing
11 changed files
with
82 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#!/usr/bin/env bash | ||
set -xeuo pipefail | ||
|
||
export MAGEFILE_VERBOSE=1 | ||
./build/linux/mage -v testPackagesInstall |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM arm64v8/centos | ||
|
||
RUN yum install -y initscripts | ||
|
||
ARG apm_server_pkg | ||
COPY $apm_server_pkg $apm_server_pkg | ||
RUN rpm -ivh $apm_server_pkg | ||
|
||
COPY test.sh test.sh | ||
|
||
CMD ./test.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM debian:jessie | ||
|
||
ARG apm_server_pkg | ||
COPY $apm_server_pkg $apm_server_pkg | ||
RUN dpkg -i $apm_server_pkg | ||
|
||
COPY test.sh test.sh | ||
|
||
CMD ./test.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM arm64v8/debian | ||
|
||
ARG apm_server_pkg | ||
COPY $apm_server_pkg $apm_server_pkg | ||
RUN dpkg -i $apm_server_pkg | ||
|
||
COPY test.sh test.sh | ||
|
||
CMD ./test.sh |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM centos:7 | ||
|
||
RUN yum install -y initscripts | ||
|
||
ARG apm_server_pkg | ||
COPY $apm_server_pkg $apm_server_pkg | ||
RUN rpm -ivh $apm_server_pkg | ||
|
||
COPY test.sh test.sh | ||
|
||
CMD ./test.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters