Merge branch 'main' of github.com:grafana/ebpf-autoinstrument into re… #17
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: PR OATS test | |
on: | |
push: | |
branches: [ 'main', 'release-*' ] | |
pull_request: | |
branches: [ 'main', 'release-*' ] | |
jobs: | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go: [ '1.22' ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: build beyla | |
run: make compile | |
- name: Run oats tests | |
run: make oats-test | |
- name: Upload oats test logs | |
uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: Oats test logs | |
path: test/oats/build/output.log |