From 0d5d6d3cc60212d494deec1b507f7f7544fa7ce5 Mon Sep 17 00:00:00 2001 From: Detlef Groth Date: Fri, 13 Dec 2024 03:50:45 +0100 Subject: [PATCH] enabling macos13 arm (xlarge) --- .github/workflows/binaries-macos32gcc.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/binaries-macos32gcc.yml b/.github/workflows/binaries-macos32gcc.yml index a9a7b54..e2efad4 100644 --- a/.github/workflows/binaries-macos32gcc.yml +++ b/.github/workflows/binaries-macos32gcc.yml @@ -13,7 +13,7 @@ jobs: build: strategy: matrix: - os: [macos-13, macos-14, macos-15] # Specify the MacOS version + os: [macos-13, macos-13-xlarge macos-14, macos-15] # Specify the MacOS version runs-on: ${{ matrix.os }} steps: @@ -37,6 +37,12 @@ jobs: export VRS=`grep -E 'meYEAR|meMONTH|meDAY' src/evers.h | head -n 3 | awk '{ print $3 }' | paste -sd '-' | sed 's/[-"]//g'` echo "VRS=$VRS" >> $GITHUB_ENV echo "GCC=gcc-12" >> $GITHUB_ENV + elif [[ "${{ matrix.os }}" == "macos-13-xlarge" ]]; then + export PATH=/usr/local/opt/make/libexec/gnubin/:$PATH + export PATH=/usr/local/opt/coreutils/libexec/gnubin:$PATH + export VRS=`grep -E 'meYEAR|meMONTH|meDAY' src/evers.h | head -n 3 | awk '{ print $3 }' | paste -sd '-' | sed 's/[-"]//g'` + echo "VRS=$VRS" >> $GITHUB_ENV + echo "GCC=gcc-12" >> $GITHUB_ENV elif [[ "${{ matrix.os }}" == "macos-14" ]]; then export PATH=/opt/homebrew/opt/make/libexec/gnubin:$PATH export PATH=/opt/homebrew/opt/coreutils/libexec/gnubin:$PATH