Skip to content

Commit

Permalink
CI: add macos-14 (#394)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgeier authored Oct 3, 2024
1 parent f15aeb9 commit bc4f0c2
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ jobs:
CC: clang-9
CXX: clang++-9
CXXFLAGS: -fno-builtin
- os: macos-14
xcode: Xcode_15.4
- os: macos-13
xcode: Xcode_15.1
- os: macos-13
Expand Down Expand Up @@ -96,11 +98,11 @@ jobs:
websocketpp
)
brew install ${PACKAGES[@]}
# Link keg-only Qt5 according to homebrew info
echo "/usr/local/opt/qt@5/bin" >> $GITHUB_PATH
echo LDFLAGS="-L/usr/local/opt/qt@5/lib" >> $GITHUB_ENV
echo CPPFLAGS="-I/usr/local/opt/qt@5/include" >> $GITHUB_ENV
echo PKG_CONFIG_PATH="/usr/local/opt/qt@5/lib/pkgconfig" >> $GITHUB_ENV
echo CPPFLAGS="-I$(brew --prefix)/include" >> $GITHUB_ENV
echo LDFLAGS="-L$(brew --prefix)/lib" >> $GITHUB_ENV
# Link keg-only Qt5
echo "$(brew --prefix)/opt/qt@5/bin" >> $GITHUB_PATH
echo PKG_CONFIG_PATH="$(brew --prefix)/opt/qt@5/lib/pkgconfig" >> $GITHUB_ENV
# Perl module needed for help2man
#cpan Locale::gettext
- name: Install compiler
Expand Down

0 comments on commit bc4f0c2

Please sign in to comment.