Skip to content

Update benchmark; let block #210

Update benchmark; let block

Update benchmark; let block #210

Workflow file for this run

name: GPU
on:
push:
branches:
- main
tags: '*'
pull_request:
types: [labeled, opened, synchronize, reopened]
schedule:
- cron: '0 0 * * 0'
jobs:
test-gpu:
if: contains(github.event.pull_request.labels.*.name, 'run GPU')
runs-on:
labels: ${{ matrix.gpu-backend }}
continue-on-error: true
strategy:
matrix:
os: [ubuntu-24.04]
gpu-backend: [kkt] #, amdgpu]
julia-version: ['1']
julia-arch: [x64]
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/add-julia-registry@v1
with:
key: ${{ secrets.SSH_KEY }}
registry: control-toolbox/ct-registry
- uses: actions/cache@v5
env:
cache-name: cache-artifacts
with:
path: ~/.julia/artifacts
key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
restore-keys: |
${{ runner.os }}-test-${{ env.cache-name }}-
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
test_args: 'GPU'