Skip to content

Commit 2a19a39

Browse files
committed
ci: cleanup cmake args
1 parent 367cadf commit 2a19a39

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

.github/workflows/amd64_windows.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ jobs:
5555
cmake -S. -Bbuild
5656
-G "${{matrix.cmake.generator}}"
5757
-DCMAKE_CONFIGURATION_TYPES=${{matrix.cmake.config}}
58-
-DBUILD_DEPS=ON
5958
-DCMAKE_INSTALL_PREFIX=install
6059
- name: Build
6160
run: >

.github/workflows/arm64_docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
almalinux,
1616
alpine,
1717
debian,
18-
#fedora, # timeout
19-
#opensuse, # timeout
18+
fedora,
19+
opensuse,
2020
rockylinux,
21-
#ubuntu, # Segmentation fault
21+
ubuntu
2222
]
2323
fail-fast: false
2424
name: arm64•${{matrix.distro}}

tools/build-manylinux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function build_wheel() {
8585
fi
8686
cmake -S. -B"${BUILD_DIR}" \
8787
-DCMAKE_BUILD_TYPE=Release \
88-
-DBUILD_DEPS=ON -DBUILD_PYTHON=ON -DPython3_ROOT_DIR="$1" \
88+
-DPython3_ROOT_DIR="$1" \
8989
-DBUILD_TESTING=OFF -DBUILD_SAMPLES=OFF -DBUILD_EXAMPLES=OFF #--debug-find
9090
cmake --build "${BUILD_DIR}" -v -j4
9191

tools/build-musllinux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function build_wheel() {
8585
fi
8686
cmake -S. -B"${BUILD_DIR}" \
8787
-DCMAKE_BUILD_TYPE=Release \
88-
-DBUILD_DEPS=ON -DBUILD_PYTHON=ON -DPython3_ROOT_DIR="$1" \
88+
-DPython3_ROOT_DIR="$1" \
8989
-DBUILD_TESTING=OFF -DBUILD_SAMPLES=OFF -DBUILD_EXAMPLES=OFF #--debug-find
9090
cmake --build "${BUILD_DIR}" -v -j4
9191

0 commit comments

Comments
 (0)