Skip to content

moved Proxstorm and TypeP rework PR from old repo #12

moved Proxstorm and TypeP rework PR from old repo

moved Proxstorm and TypeP rework PR from old repo #12

Workflow file for this run

name: Test standalone ROL
on:
pull_request:
branches:
- develop
workflow_dispatch:
jobs:
test-standalone:
runs-on: ubuntu-latest
steps:
- name: Checkout ROL
uses: actions/checkout@v3
- name: Set up dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake libopenblas-dev
sudo apt-get install -y ninja-build
- name: Build ROL
run: |
cmake -G Ninja \
-D CMAKE_BUILD_TYPE:STRING=RELEASE \
-D ENABLE_EXAMPLES=ON \
-D ENABLE_TESTS:BOOL=ON \
-B build \
.
cmake --build build
- name: Run CTest
run: |
cd build
ctest --output-on-failure