Skip to content

Commit

Permalink
enabling macos13 arm (xlarge)
Browse files Browse the repository at this point in the history
  • Loading branch information
Detlef Groth committed Dec 13, 2024
1 parent 73a992a commit 0d5d6d3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/binaries-macos32gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 0d5d6d3

Please sign in to comment.