Skip to content

Commit 5072399

Browse files
committed
revert to macos-11, fix windows bash syntax
1 parent 3ea78c9 commit 5072399

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ jobs:
5454
5555
- run: |
5656
# see https://www.mail-archive.com/gcc-bugs@gcc.gnu.org/msg586184.html
57-
if [ "${{ matrix.BUILD_BITS }}" == "64" ]; then
57+
if [ "${{ matrix.BUILD_BITS }}" != "64" ];
5858
# latest mingw64 is using gcc11
59-
else
6059
include=/c/ProgramData/Chocolatey/lib/mingw/tools/install/mingw32/lib/gcc/i686-w64-mingw32/8.1.0/include/avx512fintrin.h
6160
sed -i -e"s/_mm512_abs_pd (__m512 __A)/_mm512_abs_pd (__m512d __A)/" $include
6261
fi

.github/workflows/multibuild.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,17 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
os: [ubuntu-latest, macos-latest]
18+
os: [ubuntu-latest, macos-11]
1919
platform: [x64]
2020
PLAT: [i686, x86_64]
2121
INTERFACE64: ['', '1']
2222
MB_ML_VER: ['', 2010, 2014]
2323
include:
24-
- os: macos-latest
24+
- os: macos-11
2525
PLAT: arm64
2626
INTERFACE64: '1'
2727
platform: [x64]
28-
- os: macos-latest
28+
- os: macos-11
2929
PLAT: arm64
3030
INTERFACE64: ''
3131
platform: [x64]
@@ -42,11 +42,11 @@ jobs:
4242
MB_ML_VER: _1_1
4343
platform: [x64]
4444
exclude:
45-
- os: macos-latest
45+
- os: macos-11
4646
PLAT: i686
47-
- os: macos-latest
47+
- os: macos-11
4848
MB_ML_VER: 2010
49-
- os: macos-latest
49+
- os: macos-11
5050
MB_ML_VER: 2014
5151
- PLAT: i686
5252
INTERFACE64: '1'

0 commit comments

Comments
 (0)