Skip to content

Commit

Permalink
Added GitHub CI action
Browse files Browse the repository at this point in the history
  • Loading branch information
fpagliughi committed Jul 3, 2024
1 parent 5e9bfb7 commit be18d2f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,17 @@ jobs:
sudo apt-get update
sudo apt-get -y install mosquitto
- name: Install Mosquitto from Source (windows)
if: matrix.os == 'windows-latest'
run: |
git clone https://github.com/eclipse/mosquitto.git
cd mosquitto
git checkout "v2.0.18"
mkdir build && cd build
cmake .. -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}
cmake --build . --target install
"C:\Program Files\mosquitto\mosquitto install"
- name: Install Catch2 v2 from Source (ubuntu)
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down

0 comments on commit be18d2f

Please sign in to comment.