Skip to content

Commit 2018331

Browse files
committed
e2e test
1 parent d648c11 commit 2018331

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

.common-ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ trigger-pipeline:
8181
matrix:
8282
- DRIVER_VERSION: [535.183.06, 550.90.12, 560.35.03]
8383

84+
# Define the driver versions for jobs that can be run in parallel for amzn2023
85+
.driver-versions-amzn2023:
86+
parallel:
87+
matrix:
88+
- DRIVER_VERSION: [550.90.12, 560.35.03]
89+
8490
# Define the matrix of precompiled jobs that can be run in parallel for ubuntu22.04
8591
.driver-versions-precompiled-ubuntu22.04:
8692
parallel:
@@ -105,6 +111,10 @@ trigger-pipeline:
105111
DIST: ubuntu22.04
106112
CVE_UPDATES: "openssl"
107113

114+
.dist-amzn2023:
115+
variables:
116+
DIST: amzn2023
117+
108118
.dist-rhel8:
109119
variables:
110120
DIST: rhel8
@@ -174,6 +184,14 @@ trigger-pipeline:
174184
rules:
175185
- if: $CI_PIPELINE_SOURCE != "schedule"
176186

187+
.release-amzn2023:
188+
# Perform for each DRIVER_VERSION
189+
extends:
190+
- .release-generic
191+
- .driver-versions-amzn2023
192+
rules:
193+
- if: $CI_PIPELINE_SOURCE != "schedule"
194+
177195
.release-rhel9:
178196
# Perform for each DRIVER_VERSION
179197
extends:
@@ -211,6 +229,15 @@ trigger-pipeline:
211229
OUT_REGISTRY: "${CI_REGISTRY}"
212230
OUT_IMAGE_NAME: "${CI_REGISTRY_IMAGE}/staging/driver"
213231

232+
.release:staging-amzn2023:
233+
extends:
234+
- .release-amzn2023
235+
variables:
236+
OUT_REGISTRY_USER: "${CI_REGISTRY_USER}"
237+
OUT_REGISTRY_TOKEN: "${CI_REGISTRY_PASSWORD}"
238+
OUT_REGISTRY: "${CI_REGISTRY}"
239+
OUT_IMAGE_NAME: "${CI_REGISTRY_IMAGE}/staging/driver"
240+
214241
.release:staging-rhel9:
215242
extends:
216243
- .release-rhel9

.gitlab-ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ include:
4949
rules:
5050
- if: $CI_PIPELINE_SOURCE != "schedule"
5151

52+
# Define the image build targets
53+
.image-build-amzn2023:
54+
# Perform for each DRIVER_VERSION
55+
extends:
56+
- .driver-versions-amzn2023
57+
- .image-build-generic
58+
rules:
59+
- if: $CI_PIPELINE_SOURCE != "schedule"
60+
5261
# Define the image build targets
5362
.image-build-rhel9:
5463
# Perform for each DRIVER_VERSION
@@ -69,6 +78,11 @@ image-ubuntu22.04:
6978
- .image-build-ubuntu22.04
7079
- .dist-ubuntu22.04
7180

81+
image-amzn2023:
82+
extends:
83+
- .image-build-amzn2023
84+
- .dist-amzn2023
85+
7286
image-rhel8:
7387
extends:
7488
- .image-build

0 commit comments

Comments
 (0)