TLAS and MultitypeSet #76
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: '*' | |
| pull_request: | |
| concurrency: | |
| # Skip intermediate builds: always. | |
| # Cancel intermediate builds: only if it is a pull request build. | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| test: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| env: | |
| DISPLAY: ':0' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - uses: julia-actions/setup-julia@v2 | |
| with: | |
| version: 1 | |
| arch: x64 | |
| - uses: julia-actions/cache@v2 | |
| - uses: julia-actions/julia-runtest@v1 | |
| with: | |
| # --check-bounds=auto: GPU kernels (OpenCL/pocl) crash with --check-bounds=yes | |
| # because bounds-check code generates SPIR-V that pocl cannot handle | |
| check_bounds: auto |