-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adapt FindMosquitto.cmake for macOS * (re)enable macOS CI run
- Loading branch information
1 parent
09f2ac2
commit 731dab4
Showing
2 changed files
with
13 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
#- ubuntu-20.04 -> disabled during introduction of KDMqtt | ||
- windows-2022 | ||
#- windows-2019 | ||
#- macos-12 -> disabled during introduction of KDMqtt | ||
- macos-12 | ||
#- macos-11 | ||
build_type: | ||
- Debug | ||
|
@@ -50,6 +50,14 @@ jobs: | |
libwayland-dev xvfb ninja-build \ | ||
libmosquittopp-dev | ||
# Use homebrew bottle to speed up CI run | ||
# Ignore non-zero exit codes due to warnings by calling `... brew install [email protected] || true` | ||
- name: Download mosquitto (MacOS) | ||
if: runner.os == 'macOS' | ||
run: | | ||
brew update | ||
HOMEBREW_BOTTLE_DOMAIN=https://ghcr.io/homebrew/core brew install mosquitto@$env:MOSQUITTO_VERSION || true | ||
- name: Download mosquitto (Windows) | ||
if: runner.os == 'Windows' | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters