From de056dfc0122e1bf24fbf5b63c16573e987fa717 Mon Sep 17 00:00:00 2001 From: tunm Date: Tue, 3 Dec 2024 16:59:50 +0800 Subject: [PATCH] test manylinux2014_x86_64 --- .github/workflows/build_wheels.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheels.yaml b/.github/workflows/build_wheels.yaml index a2ac1f8d..1c6adf18 100644 --- a/.github/workflows/build_wheels.yaml +++ b/.github/workflows/build_wheels.yaml @@ -9,6 +9,7 @@ on: env: GITHUB_TOKEN: ${{ secrets.MY_GITHUB_TOKEN }} + jobs: build_manylinux2014_x86_64: name: Compile manylinux2014_x86_64 @@ -18,13 +19,19 @@ jobs: # Step 1: Checkout the repository - name: Checkout Repository uses: actions/checkout@v4 + + # Step 2: Set up Docker Compose + - name: Set up Docker Compose + run: | + sudo apt-get update + sudo apt-get install -y docker-compose - # Step 2: Execute the docker-compose command + # Step 3: Execute the docker-compose command - name: Execute Docker Compose run: | docker-compose up build-manylinux2014-x86 - # Step 3: Upload to PyPI + # Step 4: Upload to PyPI - name: Upload to PyPI env: PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} @@ -32,6 +39,7 @@ jobs: pip install twine twine upload python/dist/* -u __token__ -p $PYPI_API_TOKEN + # build_macos_arm64: # name: Compile MacOS-arm64 # runs-on: macos-14