Skip to content

fix: cast to scalar which throws ACTS warning #337

fix: cast to scalar which throws ACTS warning

fix: cast to scalar which throws ACTS warning #337

Workflow file for this run

name: Builds
on:
push:
pull_request:
branches:
- main
- 'release/**'
env:
CTEST_OUTPUT_ON_FAILURE: 1
jobs:
build:
strategy:
matrix:
os:
- macos-14
- ubuntu-22.04
- ubuntu-24.04
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: |
if [[ "$OSTYPE" == "darwin"* ]]; then
brew install boost
else
sudo apt-get install libboost-all-dev
fi
- name: Initialize Workspace
run: cd $GITHUB_WORKSPACE
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/build
run: |
cmake $GITHUB_WORKSPACE \
-DCOMPILE_WARNING_AS_ERROR=ON \
-DACTSVG_BUILD_TESTING=ON \
-DACTSVG_BUILD_META=ON \
-DACTSVG_BUILD_WEB=ON \
-DACTSVG_BUILD_EXAMPLES=ON
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --config Release
- name: Unit Tests
working-directory: ${{runner.workspace}}/build
shell: bash
run: ctest -C Release