Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
dkropachev committed Jan 26, 2025
1 parent 7c98fcc commit 0af5034
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,12 @@ jobs:
run: |
choco install openssl --version=3.3.2 -f -y
- name: Install CLang for Windows
if: runner.os == 'Windows'
run: |
choco install llvm -y
refreshenv
- name: Install Conan
if: runner.os == 'Windows'
uses: turtlebrowser/get-conan@main
Expand Down Expand Up @@ -100,6 +106,7 @@ jobs:
if: runner.os == 'Windows' && matrix.platform == 'win64'
run: |
echo "CIBW_BUILD=cp*win_amd64" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
echo "CIBW_ENVIRONMENT_WINDOWS= CC=clang CXX=clang++" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
- name: Overwrite for Windows PyPY
if: runner.os == 'Windows' && matrix.platform == 'PyPy'
Expand Down Expand Up @@ -129,15 +136,6 @@ jobs:
echo "CIBW_BEFORE_TEST_MACOS=pip install -r {project}/test-requirements.txt pytest" >> $GITHUB_ENV
echo "CIBW_TEST_COMMAND_MACOS=" >> $GITHUB_ENV
- name: Install and configure MSVC
uses: TheMrMilchmann/setup-msvc-dev@v3
if: matrix.os == 'windows-2022'
with:
arch: x64
# sdk: 10.0.10240.0
toolset: 14
uwp: true

- name: Build wheels
run: |
python3 -m cibuildwheel --output-dir wheelhouse
Expand Down

0 comments on commit 0af5034

Please sign in to comment.