From 9897f15502ed73661265b92fb2168353caf1a710 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Sat, 4 May 2024 11:42:54 +0200 Subject: [PATCH] Sunset apple-silicon-m1 self-hosted runner, as now is supported by github-hosted runners. Use macos-13 for runs on Intel macs --- .github/workflows/push.yml | 32 ++++++++++++++------------------ ci/osx_ci.sh | 13 ------------- 2 files changed, 14 insertions(+), 31 deletions(-) delete mode 100644 ci/osx_ci.sh diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 4eff5d0f61..0cbad15afe 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -110,7 +110,9 @@ jobs: continue-on-error: true strategy: matrix: - runs_on: [macos-latest, apple-silicon-m1] + # macos-latest (ATM macos-14) runs on Apple Silicon, + # macos-13 runs on Intel + runs_on: ['macos-latest', 'macos-13'] bootstrap: - name: sdl2 target: testapps-with-numpy @@ -124,25 +126,21 @@ jobs: steps: - name: Checkout python-for-android uses: actions/checkout@v4 + - name: Set up Python 3.x + uses: actions/setup-python@v5 + with: + python-version: 3.x - name: Install python-for-android run: | - source ci/osx_ci.sh - arm64_set_path_and_python_version 3.9.7 python3 -m pip install -e . - name: Install prerequisites via pythonforandroid/prerequisites.py (Experimental) run: | - source ci/osx_ci.sh - arm64_set_path_and_python_version 3.9.7 python3 pythonforandroid/prerequisites.py - name: Install dependencies (Legacy) run: | - source ci/osx_ci.sh - arm64_set_path_and_python_version 3.9.7 make --file ci/makefiles/osx.mk - name: Build multi-arch apk Python 3 (armeabi-v7a, arm64-v8a, x86_64, x86) run: | - source ci/osx_ci.sh - arm64_set_path_and_python_version 3.9.7 make ${{ matrix.bootstrap.target }} - name: Copy produced artifacts into dist/ (*.apk, *.aab) run: | @@ -199,7 +197,9 @@ jobs: strategy: matrix: android_arch: ["arm64-v8a", "armeabi-v7a", "x86_64", "x86"] - runs_on: [macos-latest, apple-silicon-m1] + # macos-latest (ATM macos-14) runs on Apple Silicon, + # macos-13 runs on Intel + runs_on: ['macos-latest', 'macos-13'] env: ANDROID_HOME: ${HOME}/.android ANDROID_SDK_ROOT: ${HOME}/.android/android-sdk @@ -211,25 +211,21 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Set up Python 3.x + uses: actions/setup-python@v5 + with: + python-version: 3.x - name: Install python-for-android run: | - source ci/osx_ci.sh - arm64_set_path_and_python_version 3.9.7 python3 -m pip install -e . - name: Install prerequisites via pythonforandroid/prerequisites.py (Experimental) run: | - source ci/osx_ci.sh - arm64_set_path_and_python_version 3.9.7 python3 pythonforandroid/prerequisites.py - name: Install dependencies (Legacy) run: | - source ci/osx_ci.sh - arm64_set_path_and_python_version 3.9.7 make --file ci/makefiles/osx.mk - name: Rebuild updated recipes run: | - source ci/osx_ci.sh - arm64_set_path_and_python_version 3.9.7 make rebuild_updated_recipes coveralls_finish: diff --git a/ci/osx_ci.sh b/ci/osx_ci.sh deleted file mode 100644 index 8cdd1ac1af..0000000000 --- a/ci/osx_ci.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -set -e -x - -arm64_set_path_and_python_version(){ - python_version="$1" - if [[ $(/usr/bin/arch) = arm64 ]]; then - export PATH=/opt/homebrew/bin:$PATH - eval "$(pyenv init --path)" - pyenv install $python_version -s - pyenv global $python_version - export PATH=$(pyenv prefix)/bin:$PATH - fi -} \ No newline at end of file