-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into 29269-auditbeat-script
- Loading branch information
Showing
466 changed files
with
12,413 additions
and
2,486 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
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
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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: auditbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-auditbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'auditbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
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,31 @@ | ||
name: filebeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-filebeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'filebeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
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,31 @@ | ||
name: heartbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-heartbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'heartbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && mage unitTest |
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,31 @@ | ||
name: metricbeat | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- '.github/workflows/macos-metricbeat.yml' | ||
push: | ||
branches: | ||
- master | ||
- 7.1* | ||
- 8.* | ||
|
||
env: | ||
BEAT_MODULE: 'metricbeat' | ||
|
||
jobs: | ||
macos: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Fetch Go version from .go-version | ||
run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV | ||
- uses: actions/setup-go@v2 | ||
with: | ||
go-version: ${{ env.GO_VERSION }} | ||
- name: Install dependencies | ||
run: go get -u github.com/magefile/mage | ||
- name: Run build | ||
run: cd ${{ env.BEAT_MODULE }} && mage build | ||
- name: Run test | ||
run: cd ${{ env.BEAT_MODULE }} && echo "See https://github.com/elastic/beats/issues/29038" |
Oops, something went wrong.