Add task notify support to CrossplatformThread #2
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: | |
image: okapilib/ubuntu-base:18.04 | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v1 | |
- name: Update Submodules | |
run: git submodule update --init --recursive | |
- name: Make | |
run: make | |
- name: Make Template | |
run: | | |
make template | |
mkdir template | |
cp okapilib@*.zip template/ | |
- name: Verify Template | |
run: | | |
prosv5 c f okapilib@*.zip | |
prosv5 c n verify-template | |
- name: Archive production artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: template | |
path: template | |
- name: Build and Test | |
env: | |
CC: gcc-7 | |
CXX: g++-7 | |
run: | | |
mkdir -p cmake-build-debug && cd cmake-build-debug | |
cmake -DCMAKE_BUILD_TYPE=Debug -G "CodeBlocks - Unix Makefiles" .. | |
cmake --build . --target OkapiLibV5 -- -j 2 | |
- name: Test | |
working-directory: cmake-build-debug | |
run: ./OkapiLibV5 | |
- name: Valgrind | |
working-directory: cmake-build-debug | |
run: valgrind --tool=memcheck --leak-check=full --leak-resolution=med --show-leak-kinds=all --undef-value-errors=yes --track-origins=yes --error-exitcode=1 --show-reachable=no ./OkapiLibV5 | |
- name: Collect Coverage | |
run: | | |
lcov --directory . --capture --output-file coverage.info | |
lcov --remove coverage.info '/usr/*' --output-file coverage.info | |
lcov --list coverage.info | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v1 | |
with: | |
fail_ci_if_error: true | |
- name: Build Docs | |
run: ./run_doxygen.sh |