Skip to content

Commit c14596d

Browse files
committed
fix compile.
1 parent 10bd169 commit c14596d

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

.github/workflows/wheels.yml

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040
platform: macos
4141
cibw_archs_macos: "arm64"
4242

43-
- name: windows-amd64
44-
os: windows-2022
45-
platform: windows
46-
cibw_archs_windows: "AMD64"
43+
# - name: windows-amd64
44+
# os: windows-2022
45+
# platform: windows
46+
# cibw_archs_windows: "AMD64"
4747

4848
steps:
4949
- name: Checkout
@@ -75,16 +75,16 @@ jobs:
7575
python -m pip install -U pip wheel
7676
python -m pip install cibuildwheel==2.21.3
7777
78-
- name: Build C++ core via Maven(win)
79-
if: matrix.platform == 'windows'
80-
shell: bash
81-
run: |
82-
set -euxo pipefail
83-
chmod +x mvnw || true
84-
./mvnw -Pwith-cpp clean verify package \
85-
-DskipTests -Dspotless.check.skip=true -Dspotless.apply.skip=true
86-
test -d cpp/target/build/lib
87-
test -d cpp/target/build/include
78+
# - name: Build C++ core via Maven(win)
79+
# if: matrix.platform == 'windows'
80+
# shell: bash
81+
# run: |
82+
# set -euxo pipefail
83+
# chmod +x mvnw || true
84+
# ./mvnw -Pwith-cpp clean verify package \
85+
# -DskipTests -Dspotless.check.skip=true -Dspotless.apply.skip=true
86+
# test -d cpp/target/build/lib
87+
# test -d cpp/target/build/include
8888

8989
- name: Build C++ core via Maven (macOS)
9090
if: matrix.platform == 'macos'
@@ -106,10 +106,9 @@ jobs:
106106
if: matrix.platform != 'macos'
107107
env:
108108
CIBW_ARCHS_LINUX: ${{ matrix.cibw_archs_linux }}
109-
CIBW_ARCHS_WINDOWS: ${{ matrix.cibw_archs_windows }}
109+
# CIBW_ARCHS_WINDOWS: ${{ matrix.cibw_archs_windows }}
110110

111-
# CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-*"
112-
CIBW_BUILD: "cp313-*"
111+
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
113112
CIBW_SKIP: "pp* *-musllinux*"
114113

115114
CIBW_MANYLINUX_X86_64_IMAGE: "manylinux2014"
@@ -152,8 +151,8 @@ jobs:
152151
if: matrix.platform == 'macos'
153152
env:
154153
CIBW_ARCHS_MACOS: ${{ matrix.cibw_archs_macos }}
155-
# CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-*"
156-
CIBW_BUILD: "cp313-*"
154+
CIBW_BUILD: "cp39-* cp310-* cp311-* cp312-* cp313-* cp314-*"
155+
# CIBW_BUILD: "cp313-*"
157156
CIBW_SKIP: "pp*"
158157
CIBW_ENVIRONMENT_MACOS: "MACOSX_DEPLOYMENT_TARGET=12.0"
159158
MACOSX_DEPLOYMENT_TARGET: "12.0"

0 commit comments

Comments
 (0)