Skip to content

Commit

Permalink
CI: Test if macOS 13 build succeeds
Browse files Browse the repository at this point in the history
  • Loading branch information
radioactiveman committed May 28, 2024
1 parent 75b112f commit 9d214a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/run-action/run-action.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ case "$action" in
if [ "$build_system" = 'meson' ]; then
meson setup build -D gtk=false
else
export PATH="/usr/local/opt/qt@5/bin:$PATH"
export PKG_CONFIG_PATH="/usr/local/opt/qt@5/lib/pkgconfig:$PKG_CONFIG_PATH"
export PATH="/opt/homebrew/opt/qt@5/bin:$PATH"
export PKG_CONFIG_PATH="/opt/homebrew/opt/qt@5/lib/pkgconfig:$PKG_CONFIG_PATH"
./autogen.sh && ./configure --enable-qt5 --disable-gtk
fi
;;
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ jobs:
build:
strategy:
matrix:
os: ['ubuntu-20.04', 'ubuntu-22.04', 'ubuntu-24.04', 'macos-12', 'windows-2022']
#os: ['ubuntu-20.04', 'ubuntu-22.04', 'ubuntu-24.04', 'macos-12', 'windows-2022']
os: ['macos-13']
build-system: ['autotools', 'meson']
fail-fast: false
runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 9d214a2

Please sign in to comment.