Skip to content

Fix an edge case for creating PGM index for floating point types #66

Fix an edge case for creating PGM index for floating point types

Fix an edge case for creating PGM index for floating point types #66

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
env:
BUILD_TYPE: RelWithDebInfo
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-12, ubuntu-22.04]
compiler: [gcc, clang]
steps:
- uses: actions/checkout@v2
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/build
run: |
if [[ "${{ matrix.compiler }}" == "gcc" ]]; then
export CC=gcc CXX=g++
else
export CC=clang CXX=clang++
fi
cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --config $BUILD_TYPE
- name: Test
working-directory: ${{runner.workspace}}/build
shell: bash
run: ctest -C $BUILD_TYPE