[updatecli] Update to elastic/beats@34763f0a9296 #11695
Workflow file for this run
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
name: ci | |
on: | |
push: | |
branches: | |
- 7.1* | |
pull_request: | |
merge_group: | |
# limit the access of the generated GITHUB_TOKEN | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: .go-version | |
cache: true | |
cache-dependency-path: | | |
go.sum | |
tools/go.sum | |
systemtest/go.sum | |
- run: make check-full | |
test: | |
strategy: | |
matrix: | |
os: ['macos-latest', 'windows-latest', 'ubuntu-latest'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: .go-version | |
cache: true | |
- env: | |
CGO_ENABLED: "0" | |
run: go test -v ./... | |
python-system-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# As long as there are some disk space issues with the CI runners. | |
- name: Free Disk Space | |
continue-on-error: true | |
uses: jlumbroso/free-disk-space@f68fdb76e2ea636224182cfb7377ff9a1708f9b8 | |
with: | |
android: true | |
dotnet: true | |
haskell: true | |
large-packages: true | |
docker-images: true | |
swap-storage: true | |
tool-cache: false | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: .go-version | |
cache: true | |
- run: make update apm-server docker-system-tests | |
go-system-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version-file: .go-version | |
cache: true | |
- run: make apm-server | |
- run: cd systemtest && go test -v -timeout=20m ./... | |
system-test: | |
runs-on: ubuntu-latest | |
needs: | |
- python-system-tests | |
- go-system-tests | |
steps: | |
- id: check | |
uses: elastic/apm-pipeline-library/.github/actions/check-dependent-jobs@current | |
with: | |
needs: ${{ toJSON(needs) }} | |
- run: ${{ steps.check.outputs.isSuccess }} |