From 14f269ec5f805117c5ce0b00bbefdc9222d5337c Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Mon, 28 Nov 2022 10:54:51 +0100 Subject: [PATCH] Switch Python generation from macOS 10.15 to 11 --- .github/workflows/python-builder.yml | 6 +++--- installers/macos-pkg-setup-template.sh | 8 +++++++- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python-builder.yml b/.github/workflows/python-builder.yml index 3c5a613..5fe5ded 100644 --- a/.github/workflows/python-builder.yml +++ b/.github/workflows/python-builder.yml @@ -14,7 +14,7 @@ on: PLATFORMS: description: 'Platforms for execution in "os" or "os_arch" format (arch is "x64" by default)' required: true - default: 'ubuntu-18.04,ubuntu-20.04,ubuntu-22.04,macos-10.15,windows-2019_x64,windows-2019_x86' + default: 'ubuntu-18.04,ubuntu-20.04,ubuntu-22.04,macos-11,windows-2019_x64,windows-2019_x86' pull_request: paths-ignore: - 'versions-manifest.json' @@ -38,7 +38,7 @@ jobs: - name: Generate execution matrix id: generate-matrix run: | - $configurations = "${{ github.event.inputs.platforms || 'ubuntu-18.04,ubuntu-20.04,ubuntu-22.04,macos-10.15,windows-2019_x64,windows-2019_x86' }}".Split(",").Trim() + [String[]]$configurations = "${{ github.event.inputs.platforms || 'ubuntu-18.04,ubuntu-20.04,ubuntu-22.04,macos-11,windows-2019_x64,windows-2019_x86' }}".Split(",").Trim() $matrix = @() foreach ($configuration in $configurations) { @@ -56,7 +56,7 @@ jobs: 'arch' = $arch } } - echo "matrix=$($matrix | ConvertTo-Json -Compress)" >> $env:GITHUB_OUTPUT + echo "matrix=$($matrix | ConvertTo-Json -Compress -AsArray)" >> $env:GITHUB_OUTPUT build_python: needs: generate_matrix diff --git a/installers/macos-pkg-setup-template.sh b/installers/macos-pkg-setup-template.sh index 555fd9d..dcda78d 100644 --- a/installers/macos-pkg-setup-template.sh +++ b/installers/macos-pkg-setup-template.sh @@ -54,7 +54,13 @@ echo "Create additional symlinks (Required for the UsePythonVersion Azure Pipeli ln -s ./bin/$PYTHON_MAJOR_DOT_MINOR python cd bin/ -ln -s $PYTHON_MAJOR_DOT_MINOR $PYTHON_MAJOR_MINOR + +# This symlink already exists if Python version with the same major.minor version is already installed, +# since we do not remove the framework folder +if [ ! -f $PYTHON_MAJOR_MINOR ]; then + ln -s $PYTHON_MAJOR_DOT_MINOR $PYTHON_MAJOR_MINOR +fi + if [ ! -f python ]; then ln -s $PYTHON_MAJOR_DOT_MINOR python fi