Sort directives. #10
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: Solaris | |
| on: [push] | |
| permissions: | |
| contents: read | |
| jobs: | |
| Solaris: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: Solaris test | |
| uses: vmactions/solaris-vm@v1 | |
| with: | |
| release: "11.4-gcc" | |
| usesh: true | |
| copyback: false | |
| prepare: | | |
| python -m venv nihtest-venv | |
| source nihtest-venv/bin/activate | |
| pip install nihtest | |
| run: | | |
| source nihtest-venv/bin/activate | |
| cmake -E make_directory ${{runner.workspace}}/build | |
| cmake ${{ matrix.cmake_extra }} ${{github.workspace}} | |
| cmake --build . --config Release | |
| ctest --output-on-failure -V -C Release |