Skip to content

Commit

Permalink
NO-JIRA: [CI Build] Use python 3.11, macos-13
Browse files Browse the repository at this point in the history
It seems that macos-latest is now OSX 14 ARM64 and this has some build
issues finding ssl when compiling the python extension.
  • Loading branch information
astitcher committed May 7, 2024
1 parent aa8ad8a commit f5b4b17
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,17 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
buildType: [RelWithDebInfo]
os:
- ubuntu-latest
- macOS-13
- windows-latest
buildType:
- RelWithDebInfo
include:
- python_version: '3.11'
- os: windows-latest
cmake_extra: '-A x64 -DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake'
cmake_generator: '-G "Visual Studio 16 2019"'
- os: macOS-latest
- os: macOS-13
pkg_config_path: '/usr/local/opt/openssl@1.1/lib/pkgconfig'
cmake_extra: '-DBUILD_RUBY=no -DTHREADERCISER=ON'
ctest_extra: '--exclude-regex c-threaderciser'
Expand All @@ -33,11 +37,12 @@ jobs:
uses: actions/setup-python@v5
with:
cache-dependency-path: python/ci_requirements.txt
python-version: 3.9
python-version: ${{matrix.python_version}}
architecture: x64
cache: 'pip'
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade -r python/ci_requirements.txt
- name: Install Linux dependencies
if: runner.os == 'Linux'
Expand Down

0 comments on commit f5b4b17

Please sign in to comment.