From fd18fa0a87a8018f6553bd66a9d49a51816e1c1e Mon Sep 17 00:00:00 2001 From: Andreas Eknes Lie Date: Fri, 5 Apr 2024 15:38:37 +0200 Subject: [PATCH] Debug info --- .../workflows/bundle_with_dakota_macos.yml | 38 ++++++++++++------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/.github/workflows/bundle_with_dakota_macos.yml b/.github/workflows/bundle_with_dakota_macos.yml index 25c9b34d..22a21f48 100644 --- a/.github/workflows/bundle_with_dakota_macos.yml +++ b/.github/workflows/bundle_with_dakota_macos.yml @@ -29,13 +29,15 @@ jobs: fail-fast: true matrix: # https://github.com/actions/runner-images?tab=readme-ov-file#available-images - python-version: [ '3.8', '3.11', '3.12' ] - os: [ 'macos-14', 'macos-14-large', 'macos-13' ] - exclude: - - os: 'macos-14' - python-version: '3.8' - - os: 'macos-14-large' - python-version: '3.8' + python-version: [ '3.8' ] + os: [ 'macos-13' ] + #python-version: [ '3.8', '3.11', '3.12' ] + #os: [ 'macos-14', 'macos-14-large', 'macos-13' ] + #exclude: + # - os: 'macos-14' + # python-version: '3.8' + # - os: 'macos-14-large' + # python-version: '3.8' runs-on: ${{ matrix.os }} name: "Build 🛞 (${{ matrix.python-version }}, ${{ matrix.os }})" @@ -230,8 +232,14 @@ jobs: # the arm64 builds require deployment targets >= 13.0 if [ "$arch_ver" == "arm64" ]; then export MACOSX_DEPLOYMENT_TARGET="${target_version}.0" + else + export MACOSX_DEPLOYMENT_TARGET="13.0" fi + echo $target_version >> $GITHUB_STEP_SUMMARY + echo $arch_ver >> $GITHUB_STEP_SUMMARY + echo $MACOSX_DEPLOYMENT_TARGET >> $GITHUB_STEP_SUMMARY + pip install delocate python -m pip install . PYTHON_VERSION_TRIM=$(echo ${{ matrix.python-version }} | tr -d ".") @@ -301,13 +309,15 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ '3.8', '3.11', '3.12' ] - os: [ 'macos-14', 'macos-14-large', 'macos-13' ] - exclude: - - os: 'macos-14' - python-version: '3.8' - - os: 'macos-14-large' - python-version: '3.8' + python-version: [ '3.8' ] + os: [ 'macos-13' ] + #python-version: [ '3.8', '3.11', '3.12' ] + #os: [ 'macos-14', 'macos-14-large', 'macos-13' ] + #exclude: + # - os: 'macos-14' + # python-version: '3.8' + # - os: 'macos-14-large' + # python-version: '3.8' runs-on: ${{ matrix.os }} steps: