Skip to content

Commit

Permalink
Running workflow only for windows, removing cd command from install w…
Browse files Browse the repository at this point in the history
…heel so all happens in same folder
  • Loading branch information
vitorguidi committed May 10, 2024
1 parent f125d60 commit 21c9cb3
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/build_python_deps_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
["3.12","cp312-*"],
]
wheel_combinations: [
["ubuntu-latest", "x86_64"],
#["ubuntu-latest", "x86_64"],
["windows-latest", "x86_64"],
["macos13", "x86_64"],
["macos13", "arm64"],
["macos14", "x86_64"],
["macos14", "arm64"],
#["macos13", "x86_64"],
#["macos13", "arm64"],
#["macos14", "x86_64"],
#["macos14", "arm64"],
]
fail-fast: false

Expand All @@ -45,12 +45,10 @@ jobs:
- name: Download and Untar File - Unix
if: matrix.wheel_combinations[0] != 'windows-latest'
run: |
cd /tmp
wget -O grpcio-1.63.0.tar.gz https://files.pythonhosted.org/packages/0c/2a/23943e19b4bbbdad60a9d881e44cd53bb48b31c7419ebb7b983edfbbb708/grpcio-1.63.0.tar.gz
- name: Build wheels
run: |
cd /tmp
python -m cibuildwheel rpcio-1.63.0.tar.gz --output-dir wheelhouse
# to supply options, put them in 'env', like:
env:
Expand Down

0 comments on commit 21c9cb3

Please sign in to comment.