ci: Rename CI target build-image to image-linux.

This commit is contained in:
Giovanni Mascellani 2024-01-04 11:31:47 +01:00 committed by Alexandre Julliard
parent cd77b2a9be
commit 847930d5e0
Notes: Alexandre Julliard 2024-01-18 23:19:27 +01:00
Approved-by: Giovanni Mascellani (@giomasce)
Approved-by: Henri Verbeet (@hverbeet)
Approved-by: Alexandre Julliard (@julliard)
Merge-Request: https://gitlab.winehq.org/wine/vkd3d/-/merge_requests/538
3 changed files with 5 additions and 5 deletions

View File

@ -5,7 +5,7 @@ vkd3d testing scripts
These scripts are used by the GitLab CI feature to automatically run These scripts are used by the GitLab CI feature to automatically run
the vkd3d tests on each merge request. the vkd3d tests on each merge request.
The CI target build-image, in the file image.yml, builds a Docker The CI target image-linux, in the file image.yml, builds a Docker
image based on Debian bookworm with all the packages required for image based on Debian bookworm with all the packages required for
testing, and uploads it to the GitLab container registry. The Docker testing, and uploads it to the GitLab container registry. The Docker
script is in the file image.docker. script is in the file image.docker.

View File

@ -5,7 +5,7 @@
image: $CI_REGISTRY/wine/vkd3d:debian-bookworm image: $CI_REGISTRY/wine/vkd3d:debian-bookworm
interruptible: true interruptible: true
needs: needs:
- job: build-image - job: image-linux
optional: true optional: true
dependencies: [] dependencies: []
script: script:
@ -68,7 +68,7 @@ build-crosstest:
image: $CI_REGISTRY/wine/vkd3d:debian-bookworm image: $CI_REGISTRY/wine/vkd3d:debian-bookworm
interruptible: true interruptible: true
needs: needs:
- job: build-image - job: image-linux
optional: true optional: true
dependencies: [] dependencies: []
script: script:
@ -94,7 +94,7 @@ build-crosstest:
image: $CI_REGISTRY/wine/vkd3d:debian-bookworm image: $CI_REGISTRY/wine/vkd3d:debian-bookworm
interruptible: true interruptible: true
needs: needs:
- job: build-image - job: image-linux
optional: true optional: true
dependencies: [] dependencies: []
script: script:

View File

@ -1,4 +1,4 @@
build-image: image-linux:
stage: image stage: image
rules: rules:
- if: $CI_PIPELINE_SOURCE == 'push' && $CI_PROJECT_PATH == "wine/vkd3d" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - if: $CI_PIPELINE_SOURCE == 'push' && $CI_PROJECT_PATH == "wine/vkd3d" && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH