Skip to content

Commit 0b2a535

Browse files
committed
revert image back to macos-13
1 parent 2e7d2b3 commit 0b2a535

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/posix.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
os: [ubuntu-latest, macos-latest]
26+
os: [ubuntu-latest, macos-13]
2727
PLAT: [i686, x86_64]
2828
INTERFACE64: ['0', '1']
2929
MB_ML_VER: ['2014']
3030
MB_ML_LIBC: ['manylinux']
3131
include:
32-
- os: macos-latest
32+
- os: macos-13
3333
PLAT: arm64
3434
INTERFACE64: '1'
35-
- os: macos-latest
35+
- os: macos-13
3636
PLAT: arm64
3737
INTERFACE64: '0'
3838
- os: ubuntu-latest
@@ -67,7 +67,7 @@ jobs:
6767

6868
exclude:
6969
- PLAT: i686
70-
os: macos-latest
70+
os: macos-13
7171
- PLAT: i686
7272
INTERFACE64: '1'
7373
env:
@@ -94,9 +94,9 @@ jobs:
9494
echo "DOCKER_TEST_IMAGE=$(echo multibuild/xenial_${{ matrix.PLAT}})" >> $GITHUB_ENV;
9595
9696
- uses: maxim-lobanov/setup-xcode@v1.6.0
97-
if: ${{ matrix.os == 'macos-latest' }}
97+
if: ${{ matrix.os == 'macos-13' }}
9898
with:
99-
xcode-version: '15.4'
99+
xcode-version: '14.3'
100100

101101
- name: Print some Environment variable
102102
run: |
@@ -137,7 +137,7 @@ jobs:
137137
version=$(cd OpenBLAS && git describe --tags --abbrev=8 | sed -e "s/^v\(.*\)-g.*/\1/" | sed -e "s/-/./g")
138138
sed -e "s/^version = .*/version = \"${version}\"/" -i.bak pyproject.toml
139139
fi
140-
if [ "macos-latest" == "${{ matrix.os }}" ]; then
140+
if [ "macos-13" == "${{ matrix.os }}" ]; then
141141
source tools/build_wheel.sh
142142
else
143143
libc=${MB_ML_LIBC:-manylinux}

tools/local_build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ function build_openblas {
6565
# Build OpenBLAS
6666
set -xeo pipefail
6767
if [ "$PLAT" == "arm64" ]; then
68-
sudo xcode-select -switch /Applications/Xcode_15.4.0.app
69-
export SDKROOT=/Applications/Xcode_15.4.0-app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk
68+
sudo xcode-select -switch /Applications/Xcode_12.5.1.app
69+
export SDKROOT=/Applications/Xcode_12.5.1.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX11.3.sdk
7070
clang --version
7171
fi
7272
source tools/build_steps.sh

0 commit comments

Comments
 (0)