Skip to content

Commit e8d9c9c

Browse files
committed
fix platform tag
1 parent 291174d commit e8d9c9c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/build_layer.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,11 @@ jobs:
2626
run: |
2727
# Convert matrix.arch into pip platform tag
2828
if [ "${{ matrix.arch }}" = "amd64" ]; then
29-
PLATFORM_TAG="manylinux_2014_x86_64"
29+
PLATFORM_TAG="manylinux_2_17_x86_64"
3030
else
31-
PLATFORM_TAG="manylinux_2014_aarch64"
31+
PLATFORM_TAG="manylinux_2_17_aarch64"
3232
fi
3333
34-
echo pip download --no-deps --find-links https://dd-trace-py-builds.s3.amazonaws.com/main/index.html --pre --python-version "${{ matrix.python_version}}" --platform "${PLATFORM_TAG}" ddtrace
3534
pip download --no-deps --find-links https://dd-trace-py-builds.s3.amazonaws.com/main/index.html --pre --python-version "${{ matrix.python_version}}" --platform "${PLATFORM_TAG}" ddtrace
3635
echo "wheel_path=$(find . -name "*.whl" | head -n 1)" >> $GITHUB_OUTPUT
3736

0 commit comments

Comments
 (0)