Skip to content

Adds underlying_type support to UnitVec including direct initialization #392

Adds underlying_type support to UnitVec including direct initialization

Adds underlying_type support to UnitVec including direct initialization #392

Workflow file for this run

name: windows
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: windows-2022
strategy:
matrix:
build_type: [Debug, Release]
platform: [Win32, x64]
include:
- platform: Win32
triplet: x86-windows-static
genplat: WIN32
- platform: x64
triplet: x64-windows-static
genplat: x64
- build_type: Debug
linkage: 'shared'
- build_type: Release
linkage: 'static'
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Prerequisites
run: |
vcpkg install --triplet=${{matrix.triplet}} glew glfw3
- 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
-DCMAKE_GENERATOR_PLATFORM=${{matrix.genplat}}
-DCMAKE_TOOLCHAIN_FILE=C:/vcpkg/scripts/buildsystems/vcpkg.cmake
-DVCPKG_TARGET_TRIPLET=${{matrix.triplet}}
-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 --config ${{matrix.build_type}} --prefix ${{github.workspace}}/install
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: windows-${{matrix.build_type}}-${{matrix.platform}}
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 --output-on-failure --build-config ${{matrix.build_type}}