docs(install/python): flesh out linear solver backend coverage #485
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: Build and Test with Spectral Cones | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 6 * * 1' | |
| jobs: | |
| linux: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| long: [0, 1] | |
| spectral: [0, 1] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: sudo apt-get update && sudo apt-get install -y libopenblas-dev liblapack-dev | |
| - run: make DLONG=${{ matrix.long }} USE_LAPACK=1 USE_SPECTRAL_CONES=${{ matrix.spectral }} | |
| - run: make test DLONG=${{ matrix.long }} USE_LAPACK=1 USE_SPECTRAL_CONES=${{ matrix.spectral }} | |
| - run: out/run_tests_direct # test direct solver | |
| - run: out/run_tests_indirect # test indirect solver | |
| - run: out/run_tests_dense # test dense solver | |
| mac: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| long: [0, 1] | |
| spectral: [0, 1] | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: brew update && brew install openblas lapack | |
| - run: export CC="clang -fsanitize=address -fsanitize=undefined -fsanitize=float-divide-by-zero -fsanitize=float-cast-overflow" | |
| - run: make DLONG=${{ matrix.long }} USE_LAPACK=1 USE_SPECTRAL_CONES=${{ matrix.spectral }} | |
| - run: make test DLONG=${{ matrix.long }} USE_LAPACK=1 USE_SPECTRAL_CONES=${{ matrix.spectral }} | |
| - run: out/run_tests_direct # test direct solver | |
| - run: out/run_tests_indirect # test indirect solver | |
| - run: out/run_tests_dense # test dense solver |