Skip to content

Commit

Permalink
Add changelog, and run ebpf tests on x86 linux in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RonFed committed Oct 5, 2024
1 parent 667b2ae commit 8c704a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
uname -p;
clang --version;
- run: make test
- run: sudo make test_ebpf
- run: make check-clean-work-tree
generate-and-test-arm64:
runs-on: macos-latest
Expand All @@ -50,7 +51,6 @@ jobs:
uname -p;
clang --version;
- run: make test
- run: sudo make ebpf-test
- run: make check-clean-work-tree
docker-build:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ OpenTelemetry Go Automatic Instrumentation adheres to [Semantic Versioning](http

## [Unreleased]

### Added

- Implement traceID ration and parent-based samplers. ([#1150](https://github.com/open-telemetry/opentelemetry-go-instrumentation/pull/1150))

## [v0.15.0-alpha] - 2024-10-01

### Added
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ test/%: GO_MOD=$*
test/%:
cd $(shell dirname $(GO_MOD)) && $(GOCMD) test -v ./...

# Theses tests need to be run as privileged user/with sudo
# These tests need to be run as privileged user/with sudo
.PHONY: test_ebpf
test_ebpf: generate $(GO_MODS_TO_EBPF_TEST)
test_ebpf/%: GO_MOD=$*
Expand Down

0 comments on commit 8c704a6

Please sign in to comment.