-
Notifications
You must be signed in to change notification settings - Fork 2
/
matrix.yaml
56 lines (49 loc) · 1.16 KB
/
matrix.yaml
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
50
51
52
53
54
55
56
# This file represents the supported image versions at any given time. When an
# element is removed from this matrix, its resources will be removed from AWS
# the next time the garbage collection job runs.
#
# Therefore, entries should only be removed from the matrix when their
# corresponding image is no longer needed.
OS:
- linux
- windows
DRIVER_VERSION:
# keep this blank entry. an empty driver version corresponds to CPU machines
- ""
- "535"
- "565"
DRIVER_FLAVOR:
- ""
- "legacy"
- "open"
RUNNER_VERSION:
# renovate: repo=actions/runner
- "2.320.0"
ARCH:
- amd64
- arm64
ENV:
- aws
- qemu
exclude:
# only use amd64 for windows
- OS: windows
ARCH: arm64
# only make CPU images for windows
- OS: windows
DRIVER_VERSION: "535"
- OS: windows
DRIVER_VERSION: "565"
# only make AMI images for windows
- OS: windows
ENV: qemu
# don't set DRIVER_FLAVOR for CPU images
- DRIVER_VERSION: ""
DRIVER_FLAVOR: "legacy"
- DRIVER_VERSION: ""
DRIVER_FLAVOR: "open"
# ensure DRIVER_FLAVOR is set if DRIVER_VERSION is set
- DRIVER_VERSION: "535"
DRIVER_FLAVOR: ""
- DRIVER_VERSION: "565"
DRIVER_FLAVOR: ""