Skip to content

Adds underlying_type support to UnitVec including direct initialization #387

Adds underlying_type support to UnitVec including direct initialization

Adds underlying_type support to UnitVec including direct initialization #387

Workflow file for this run

name: linux
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: [Release]
real_type: [float, double]
include:
- real_type: float
linkage: 'shared'
- real_type: double
linkage: 'static'
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
- 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}}
-DBUILD_SHARED_LIBS=${{matrix.linkage == 'shared'}}
- name: Build
# Build your program with the given configuration
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}}
- name: Install
run: cmake --install ${{github.workspace}}/build --prefix ${{github.workspace}}/install
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: linux-${{matrix.build_type}}-${{matrix.real_type}}
path: ${{github.workspace}}/install
- 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