39 lines
1.1 KiB
YAML
Raw Normal View History

name: CMake
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build examples and tests
2020-03-31 21:38:51 +02:00
run: rm -rf build || true && mkdir build && cd build && cmake .. -DLIBMBUS_BUILD_EXAMPLES=ON -DLIBMBUS_BUILD_TESTS=ON -DLIBMBUS_ENABLE_COVERAGE=ON && cmake --build . -j && cd ..
- name: generate test frames
run: ./test/generate-xml.sh test/test-frames build/bin/mbus_parse_hex
- name: install and run gcovr
run: sudo pip install gcovr && gcovr build/.
debian:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build debian package
run: rm -rf build || true && mkdir build && cd build && cmake .. -DLIBMBUS_PACKAGE_DEB=ON && cpack .. && sudo dpkg -i *.deb && ls /usr/lib
2020-03-23 13:41:26 +01:00
doc:
runs-on: ubuntu-latest
2020-03-31 21:38:51 +02:00
2020-03-23 13:41:26 +01:00
steps:
- uses: actions/checkout@v2
2020-03-23 13:54:57 +01:00
- name: build doxygen documentation
run: sudo apt install -y doxygen
2020-03-23 13:41:26 +01:00
- name: build doxygen documentation
run: rm -rf build || true && mkdir build && cd build && cmake .. -DLIBMBUS_BUILD_DOCS=ON && cmake --build . --target doc