File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,12 @@ jobs:
12
12
build_pull_request :
13
13
runs-on : ${{ matrix.os }}
14
14
strategy :
15
+ fail-fast : false
15
16
matrix :
16
17
os :
17
18
- ubuntu-22.04
18
19
- macos-13
20
+ - macos-14
19
21
- windows-2022
20
22
abi :
21
23
- armeabi-v7a
@@ -57,13 +59,14 @@ jobs:
57
59
sudo apt install extra-cmake-modules gettext
58
60
59
61
- name : Install system dependencies (macOS)
60
- if : ${{ matrix.os == 'macos-13' }}
62
+ if : ${{ startsWith( matrix.os, 'macos') }}
61
63
run : |
62
64
brew install extra-cmake-modules
63
65
64
66
- name : Install system dependencies (Windows)
65
67
if : ${{ matrix.os == 'windows-2022' }}
66
68
run : |
69
+ C:/msys64/usr/bin/pacman -Syu --noconfirm
67
70
C:/msys64/usr/bin/pacman -S --noconfirm mingw-w64-ucrt-x86_64-gettext mingw-w64-ucrt-x86_64-extra-cmake-modules
68
71
Add-Content $env:GITHUB_PATH "C:/msys64/ucrt64/bin"
69
72
You can’t perform that action at this time.
0 commit comments