From 16c8b3893bf68d851c53b0234f07e98d755c723f Mon Sep 17 00:00:00 2001 From: James Lamb Date: Sat, 26 Nov 2022 19:41:35 -0600 Subject: [PATCH] [ci] [python-package] correct tag on x86_64 wheels (#5598) --- .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 159ac95f71a6..f73fbe915cc6 100755 --- a/.ci/test.sh +++ b/.ci/test.sh @@ -157,7 +157,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 300da8efc0f3..6d7628b1f2df 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"