From 61e0cf1f3a6aadf7425621663ca0d064049c22ce Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 21 Nov 2022 00:10:11 -0600 Subject: [PATCH] [ci] [python-package] correct tag on x86_64 wheels --- .ci/test.sh | 2 +- .vsts-ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.ci/test.sh b/.ci/test.sh index 6439f4c660fd..44a2081af083 100755 --- a/.ci/test.sh +++ b/.ci/test.sh @@ -162,7 +162,7 @@ elif [[ $TASK == "bdist" ]]; then else ARCH=$(uname -m) if [[ $ARCH == "x86_64" ]]; then - PLATFORM="manylinux1_x86_64" + PLATFORM="manylinux_2_28_x86_64" else PLATFORM="manylinux2014_$ARCH" fi diff --git a/.vsts-ci.yml b/.vsts-ci.yml index 8c73368a8c1a..15b33d229583 100644 --- a/.vsts-ci.yml +++ b/.vsts-ci.yml @@ -19,7 +19,7 @@ variables: resources: containers: - container: linux-artifact-builder - image: lightgbm/vsts-agent:manylinux_2_28_x86_64-dev + image: lightgbm/vsts-agent:manylinux_2_28_x86_64 - container: ubuntu-latest image: 'ubuntu:20.04' options: "--name ci-container -v /usr/bin/docker:/tmp/docker:ro"