moved Proxstorm and TypeP rework PR from old repo #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |