Changes to address #560 #335
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: linux-debug | |
on: | |
push: | |
branches: [ "master", "release-1.1" ] | |
pull_request: | |
branches: [ "master", "release-1.1" ] | |
jobs: | |
build: | |
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. | |
# You can convert this to a matrix build if you need cross-platform coverage. | |
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
build_type: [Debug] | |
real_type: [float, double] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Prerequisites | |
run: | | |
sudo apt update | |
sudo apt install xorg-dev libx11-dev libxmu-dev libxi-dev libgl1 libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev mesa-common-dev libosmesa-dev | |
sudo apt install libglfw3-dev libglew2.2 libglew-dev | |
sudo apt install lcov | |
- name: Configure | |
# Configure CMake in a 'build' subdirectory. | |
# `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. | |
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type | |
run: > | |
cmake -B ${{github.workspace}}/build | |
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} | |
-DPLAYRHO_BUILD_HELLOWORLD=ON | |
-DPLAYRHO_BUILD_UNIT_TESTS=ON | |
-DPLAYRHO_BUILD_TESTBED=ON | |
-DPLAYRHO_BUILD_BENCHMARK=ON | |
-DPLAYRHO_REAL_TYPE=${{matrix.real_type}} | |
-DPLAYRHO_ENABLE_COVERAGE=ON | |
- name: Build | |
# Build your program with the given configuration | |
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} | |
- name: Test | |
working-directory: ${{github.workspace}}/build | |
# Execute tests defined by the CMake configuration. | |
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail | |
run: ctest -C ${{matrix.build_type}} --output-on-failure | |
- name: lcov | |
working-directory: ${{github.workspace}}/build | |
run: | | |
lcov --compat-libtool --directory Library --directory UnitTests --base-directory ../Library/ --capture --output-file coverage.info --quiet | |
echo "Lcov exited with status $?" | |
ls -laF | |
lcov --remove coverage.info '*/UnitTests/*' -o coverage.info | |
lcov --remove coverage.info '/usr/include/*' -o coverage.info | |
ls -laF coverage.info | |
lcov --list coverage.info | |
- name: Coveralls | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
path-to-lcov: build/coverage.info | |
parallel: true | |
flag-name: REAL_TYPE=${{matrix.real_type}} | |
finish: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Coveralls Finished | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
path-to-lcov: build/coverage.info | |
parallel-finished: true |