From 3cc33e91a41847eb83222aed9b88713651da36a1 Mon Sep 17 00:00:00 2001 From: Vitor Guidi Date: Fri, 10 May 2024 14:07:07 +0000 Subject: [PATCH] Attempting to fix bad path --- .github/workflows/build_python_deps_linux.yml | 24 ++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build_python_deps_linux.yml b/.github/workflows/build_python_deps_linux.yml index dcb119f291..5c3027afff 100644 --- a/.github/workflows/build_python_deps_linux.yml +++ b/.github/workflows/build_python_deps_linux.yml @@ -11,7 +11,8 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-13, macos-14] - python_version: ["3.7","3.8","3.9","3.10","3.11","3.12"] + #python_version: ["3.7","3.8","3.9","3.10","3.11","3.12"] + python_version: ["3.9"] steps: # Used to host cibuildwheel @@ -19,12 +20,8 @@ jobs: with: python_version: ${{ matrix.python_version }} - - name: Download and Untar File - Unix - if: matrix.os != 'windows-latest' - run: | - wget -O grpcio-1.63.0.tar.gz https://files.pythonhosted.org/packages/0c/2a/23943e19b4bbbdad60a9d881e44cd53bb48b31c7419ebb7b983edfbbb708/grpcio-1.63.0.tar.gz - tar xzf grpcio-1.63.0.tar.gz - cd grpcio-1.63.0 + - name: Install cibuildwheel + run: python -m pip install cibuildwheel==2.17.0 - name: Download and Untar File - Windows if: matrix.os == 'windows-latest' @@ -33,12 +30,17 @@ jobs: Expand-Archive -Path "grpcio-1.63.0.tar.gz" -DestinationPath "grpcio-1.63.0" cd grpcio-1.63.0 - - - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.17.0 + - name: Download and Untar File - Unix + if: matrix.os != 'windows-latest' + run: | + mkdir /tmp && cd /tmp + wget -O grpcio-1.63.0.tar.gz https://files.pythonhosted.org/packages/0c/2a/23943e19b4bbbdad60a9d881e44cd53bb48b31c7419ebb7b983edfbbb708/grpcio-1.63.0.tar.gz + tar xzf grpcio-1.63.0.tar.gz - name: Build wheels - run: python -m cibuildwheel --output-dir wheelhouse + run: | + cd /tmp/grpcio-1.63.0/= + python -m cibuildwheel --output-dir wheelhouse # to supply options, put them in 'env', like: # env: # CIBW_SOME_OPTION: value