This is an automated email from the ASF dual-hosted git repository.

astitcher pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton.git


The following commit(s) were added to refs/heads/main by this push:
     new f5b4b1789 NO-JIRA: [CI Build] Use python 3.11, macos-13
f5b4b1789 is described below

commit f5b4b17897475a81c7629beff5fc19abd168dd38
Author: Andrew Stitcher <[email protected]>
AuthorDate: Tue May 7 15:34:12 2024 -0400

    NO-JIRA: [CI Build] Use python 3.11, macos-13
    
    It seems that macos-latest is now OSX 14 ARM64 and this has some build
    issues finding ssl when compiling the python extension.
---
 .github/workflows/build.yml | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 0633585bf..c8e7ba3b3 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -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/[email protected]/lib/pkgconfig'
           cmake_extra: '-DBUILD_RUBY=no -DTHREADERCISER=ON'
           ctest_extra: '--exclude-regex c-threaderciser'
@@ -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'


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to