Update to unit tests for curved venetians and unit normals in view fa… #643
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: Latest Ubuntu | |
on: [push, pull_request] | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
BUILD_TYPE: Release | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y g++-11 | |
- name: Configure CMake | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_STANDARD=17 | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
- name: Test Fenestration Common | |
working-directory: ${{github.workspace}}/build | |
run: src/Common/FenestrationCommon_tests | |
- name: Test Viewer | |
working-directory: ${{github.workspace}}/build | |
run: src/Viewer/Viewer_tests | |
- name: Test Gases | |
working-directory: ${{github.workspace}}/build | |
run: src/Gases/Gases_tests | |
- name: Test Tarcog | |
working-directory: ${{github.workspace}}/build | |
run: src/Tarcog/Tarcog_tests | |
- name: Test Spectral Averaging | |
working-directory: ${{github.workspace}}/build | |
run: src/SpectralAveraging/SpectralAveraging_tests | |
- name: Test Single Layer Optics | |
working-directory: ${{github.workspace}}/build | |
run: src/SingleLayerOptics/SingleLayerOptics_tests | |
- name: Test Multi Layer Optics | |
working-directory: ${{github.workspace}}/build | |
run: src/MultiLayerOptics/MultiLayerOptics_tests |