-
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (43 loc) · 1.01 KB
/
Copy pathfull-test.yml
File metadata and controls
45 lines (43 loc) · 1.01 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
name: Full Test
on:
workflow_dispatch:
schedule:
- cron: '0 3 * * 0'
jobs:
Full-Test:
name: Full Test
strategy:
fail-fast: false
matrix:
os:
# https://github.com/actions/runner-images
- windows-latest
- windows-2025
- windows-2022
- ubuntu-latest
- ubuntu-24.04
- ubuntu-22.04
# https://github.com/actions/partner-runner-images
- ubuntu-24.04-arm
- ubuntu-22.04-arm
version:
- '10.0'
- '11.0'
- '12.0'
- '13.0'
- latest
method:
- local
- auto
exclude:
# CUDA 10.x is not supported on ARM architecture
- os: ubuntu-24.04-arm
version: '10.0'
- os: ubuntu-22.04-arm
version: '10.0'
uses: ./.github/workflows/_test.yml
with:
os: ${{ matrix.os }}
version: ${{ matrix.version }}
method: ${{ matrix.method }}
debug: true