Skip to content

Commit

Permalink
Attempting to fix bad path
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorguidi committed May 10, 2024
1 parent 1836d91 commit 3cc33e9
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/build_python_deps_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,17 @@ 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
- uses: actions/setup-python@v5
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'
Expand All @@ -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
Expand Down

0 comments on commit 3cc33e9

Please sign in to comment.