Skip to content

Commit 5d502a1

Browse files
authored
chore: Update offsets for python 3.13.0 (stable) (#4256)
* chore: Update offsets for python 3.13.0 (stable) We appear to have used the a6 offset for a while, fixing them to the stable release. The offset also are valid for latest patch 3.13.5. * Also test against 3.13.0 * Use my docker hub registry
1 parent 8d06da7 commit 5d502a1

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

ebpf/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,12 @@ rideshare/gen:
9999
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.10-slim --build-arg="PYTHON_VERSION=3.10-slim" $(RIDESHARE)
100100
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.11-slim --build-arg="PYTHON_VERSION=3.11-slim" $(RIDESHARE)
101101
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.12-slim --build-arg="PYTHON_VERSION=3.12-slim" $(RIDESHARE)
102-
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.13-rc-slim --build-arg="PYTHON_VERSION=3.13-rc-slim" $(RIDESHARE)
102+
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.13-slim --build-arg="PYTHON_VERSION=3.13-slim" $(RIDESHARE)
103103
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.8-alpine --build-arg="PYTHON_VERSION=3.8-alpine" $(RIDESHARE)
104104
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.9-alpine --build-arg="PYTHON_VERSION=3.9-alpine" $(RIDESHARE)
105105
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.10-alpine --build-arg="PYTHON_VERSION=3.10-alpine" $(RIDESHARE)
106106
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.11-alpine --build-arg="PYTHON_VERSION=3.11-alpine" $(RIDESHARE)
107107
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.12-alpine --build-arg="PYTHON_VERSION=3.12-alpine" $(RIDESHARE)
108-
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.13-rc-alpine --build-arg="PYTHON_VERSION=3.13-rc-alpine" $(RIDESHARE)
108+
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:3.13-alpine --build-arg="PYTHON_VERSION=3.13-alpine" $(RIDESHARE)
109109
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:ubuntu-20.04 --build-arg="BASE=ubuntu:20.04" --build-arg="FLASK_VERSION=3.0.3" -f $(RIDESHARE)/ubuntu.Dockerfile $(RIDESHARE)
110110
docker buildx build --platform=linux/amd64,linux/arm64 --push -t $(RIDESHARE_REPO)/ebpf-testdata-rideshare:ubuntu-22.04 --build-arg="BASE=ubuntu:22.04" --build-arg="FLASK_VERSION=3.0.3" -f $(RIDESHARE)/ubuntu.Dockerfile $(RIDESHARE)

ebpf/python/python_offsets_gen_amd64.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ebpf/python/python_offsets_gen_arm64.go

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ebpf/python_ebpf_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ func TestEBPFPythonProfiler(t *testing.T) {
3939
{"pyroscope/ebpf-testdata-rideshare:3.10-slim", pythonEBPFExpected},
4040
{"pyroscope/ebpf-testdata-rideshare:3.11-slim", pythonEBPFExpected},
4141
{"pyroscope/ebpf-testdata-rideshare:3.12-slim", pythonEBPFExpected},
42-
{"pyroscope/ebpf-testdata-rideshare:3.13-rc-slim", pythonEBPFExpected},
42+
{"simonswine/ebpf-testdata-rideshare:3.13-slim", pythonEBPFExpected},
4343
{"pyroscope/ebpf-testdata-rideshare:3.8-alpine", pythonEBPFExpected},
4444
{"pyroscope/ebpf-testdata-rideshare:3.9-alpine", pythonEBPFExpected},
4545
{"pyroscope/ebpf-testdata-rideshare:3.10-alpine", pythonEBPFExpected},
4646
{"pyroscope/ebpf-testdata-rideshare:3.11-alpine", pythonEBPFExpected},
4747
{"pyroscope/ebpf-testdata-rideshare:3.12-alpine", pythonEBPFExpected},
48-
{"pyroscope/ebpf-testdata-rideshare:3.13-rc-alpine", pythonEBPFExpected},
48+
{"simonswine/ebpf-testdata-rideshare:3.13-alpine", pythonEBPFExpected},
4949
{"pyroscope/ebpf-testdata-rideshare:ubuntu-20.04", pythonEBPFExpectedUbuntu()},
5050
{"pyroscope/ebpf-testdata-rideshare:ubuntu-22.04", pythonEBPFExpectedUbuntu()},
5151
}

0 commit comments

Comments
 (0)