Skip to content

[test] Improved tests to avoid all-breaking asserts and inter-test messup #3286

[test] Improved tests to avoid all-breaking asserts and inter-test messup

[test] Improved tests to avoid all-breaking asserts and inter-test messup #3286

Workflow file for this run

name: cxx11
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: ubuntu
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- name: configure
run: |
mkdir _build && cd _build
cmake ../ -DENABLE_STDCXX_SYNC=ON -DENABLE_ENCRYPTION=ON -DENABLE_UNITTESTS=ON -DENABLE_BONDING=ON -DENABLE_TESTING=ON -DENABLE_EXAMPLES=ON -DENABLE_CODE_COVERAGE=ON
- name: build
run: cd _build && cmake --build ./
- name: test
run: |
cd _build && ctest --extra-verbose
- name: codecov
run: |
source ./scripts/collect-gcov.sh
bash <(curl -s https://codecov.io/bash)