Allow to disable Reservation module #351
Workflow file for this 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
name: Unit tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
compile-and-run: | |
name: Automated Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v3 | |
- name: Check out MbedTLS | |
uses: actions/checkout@v3 | |
with: | |
repository: Mbed-TLS/mbedtls | |
ref: v2.28.1 | |
path: lib/mbedtls | |
- name: Get build tools | |
run: | | |
sudo apt update | |
sudo apt install build-essential cmake lcov valgrind | |
sudo apt -y install gcc-9 g++-9 | |
g++ --version | |
echo "g++ version must be 9.4.0" | |
- name: Get ArduinoJson | |
run: wget -Uri https://github.com/bblanchon/ArduinoJson/releases/download/v6.21.3/ArduinoJson-v6.21.3.h -O ./src/ArduinoJson.h | |
- name: Generate CMake build files | |
run: cmake -S . -B ./build -DMO_BUILD_UNIT_MBEDTLS=True | |
- name: Compile | |
run: cmake --build ./build -j 32 --target mo_unit_tests | |
- name: Configure FS | |
run: mkdir mo_store | |
- name: Run tests (valgrind) | |
run: valgrind --error-exitcode=1 --leak-check=full ./build/mo_unit_tests --abort | |
- name: Generate CMake build files (AddressSanitizer, UndefinedBehaviorSanitizer) | |
run: | | |
rm -r ./build | |
cmake -S . -B ./build -DCMAKE_CXX_FLAGS="-fsanitize=address -fsanitize=undefined" -DCMAKE_EXE_LINKER_FLAGS="-fsanitize=address -fsanitize=undefined" -DMO_BUILD_UNIT_MBEDTLS=True | |
- name: Compile (ASan, UBSan) | |
run: cmake --build ./build -j 32 --target mo_unit_tests | |
- name: Run tests (ASan, UBSan) | |
run: ./build/mo_unit_tests --abort | |
- name: Create coverage report | |
run: | | |
lcov --directory . --capture --output-file coverage.info | |
lcov --remove coverage.info '/usr/*' '*/tests/*' '*/ArduinoJson.h' --output-file coverage.info | |
lcov --list coverage.info | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |