-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (46 loc) · 1.3 KB
/
GPU.yml
File metadata and controls
49 lines (46 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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@v2
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'