Skip to content

Commit 163b5b8

Browse files
committed
reduce matrix to speedup test
1 parent ecf50c2 commit 163b5b8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/libzedmd-python-pybind11-extension.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ jobs:
4545
fail-fast: false
4646
matrix:
4747
include:
48-
- { os: windows-latest, platform: win, arch: x64, type: Release }
48+
# - { os: windows-latest, platform: win, arch: x64, type: Release }
4949
- { os: windows-latest, platform: win, arch: x86, type: Release }
50-
- { os: macos-latest, platform: macos, arch: arm64, type: Release }
50+
# - { os: macos-latest, platform: macos, arch: arm64, type: Release }
5151
- { os: macos-latest, platform: macos, arch: x64, type: Release }
52-
- { os: ubuntu-latest, platform: linux, arch: x64, type: Release }
53-
- { os: ubuntu-24.04-arm, platform: linux, arch: aarch64, type: Release }
52+
# - { os: ubuntu-latest, platform: linux, arch: x64, type: Release }
53+
# - { os: ubuntu-24.04-arm, platform: linux, arch: aarch64, type: Release }
5454
steps:
5555
- uses: actions/checkout@v4
5656
with:
@@ -65,7 +65,7 @@ jobs:
6565
6666
- if: (matrix.platform == 'macos')&&(matrix.arch == 'x64')
6767
name: Set up Python x64
68-
uses: actions/setup-python@v3
68+
uses: actions/setup-python@v5
6969
with:
7070
architecture: 'x64'
7171
python-version: 3.11.9

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ elseif(PLATFORM STREQUAL "macos")
3434
set(CMAKE_OSX_ARCHITECTURES arm64)
3535
elseif(ARCH STREQUAL "x64")
3636
set(CMAKE_OSX_ARCHITECTURES x86_64)
37-
set(PYTHON_VERSION "3.11.9 ")
37+
set(PYTHON_VERSION " ")
3838
endif()
3939
# set(CMAKE_BUILD_WITH_INSTALL_RPATH TRUE)
4040
# set(CMAKE_INSTALL_RPATH "@executable_path")

0 commit comments

Comments
 (0)