Skip to content

TLAS and MultitypeSet #76

TLAS and MultitypeSet

TLAS and MultitypeSet #76

Workflow file for this run

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