Add macos CI

This commit is contained in:
Gudmundur Adalsteinsson 2021-07-16 11:28:41 +00:00
parent d805bd3b3f
commit cb44ec43ca

View File

@ -62,6 +62,7 @@ jobs:
libzmq: "4.3.4" libzmq: "4.3.4"
libzmqbuild: "cmake" libzmqbuild: "cmake"
coverage: "-DCOVERAGE=ON" coverage: "-DCOVERAGE=ON"
aptinstall: "lcov"
# clang # clang
- os: "ubuntu-latest" - os: "ubuntu-latest"
cppstd: "17" cppstd: "17"
@ -70,6 +71,15 @@ jobs:
drafts: "ON" drafts: "ON"
libzmq: "4.3.4" libzmq: "4.3.4"
libzmqbuild: "cmake" libzmqbuild: "cmake"
# macos
- os: "macos-latest"
cppstd: "17"
cc: "clang"
cxx: "clang++"
drafts: "OFF"
libzmq: "4.3.4"
libzmqbuild: false
brewinstall: "zeromq"
# windows # windows
- os: "windows-2016" - os: "windows-2016"
cppstd: "14" cppstd: "14"
@ -94,14 +104,18 @@ jobs:
VERBOSE: 1 VERBOSE: 1
THREADS: 2 THREADS: 2
BUILDTYPE: "Debug" BUILDTYPE: "Debug"
COVERAGE: "OFF" # TODO
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: install_deps - name: install_deps
if: matrix.aptinstall run: |
run: sudo apt install ${{matrix.aptinstall}} if [ ! -z "${{ matrix.aptinstall }}" ]; then
sudo apt install -y ${{ matrix.aptinstall }}
fi
if [ ! -z "${{ matrix.brewinstall }}" ]; then
brew install ${{ matrix.brewinstall }}
fi
- name: get_libzmq - name: get_libzmq
run: | run: |
@ -165,7 +179,6 @@ jobs:
- name: lcov - name: lcov
if: ${{ matrix.coverage && success() }} if: ${{ matrix.coverage && success() }}
run: | run: |
sudo apt install -y lcov
lcov --capture --directory . --output-file coverage.info lcov --capture --directory . --output-file coverage.info
lcov --remove coverage.info -o coverage_filtered.info \ lcov --remove coverage.info -o coverage_filtered.info \
'/usr/include/*' \ '/usr/include/*' \