xf86-video-amdgpu: Branch 'master' - 2 commits

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Feb 12 17:58:07 UTC 2019


 .gitlab-ci.yml |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

New commits:
commit 5f91be77e059d0c4a4268ec10cbd9aa1052f53eb
Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Mon Feb 11 18:32:07 2019 +0100

    gitlab-ci: Don't rely on $CI_PROJECT_NAME
    
    The name of a forked repository can be changed later, in which case this
    would fail to refer to the main repository.
    
    Pointed out by Eric Engestrom in
    https://gitlab.freedesktop.org/mesa/mesa/merge_requests/224 .

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cad343b..53b89c3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -15,7 +15,7 @@
 variables:
   IMAGE_TAG: "debian-testing-20181213"
   IMAGE_LOCAL: "$CI_REGISTRY_IMAGE:$IMAGE_TAG"
-  IMAGE_MAIN: "registry.freedesktop.org/xorg/driver/$CI_PROJECT_NAME:$IMAGE_TAG"
+  IMAGE_MAIN: "registry.freedesktop.org/xorg/driver/xf86-video-amdgpu:$IMAGE_TAG"
 
 stages:
   - docker-image
commit 9c23076b9e81c36ac2408c491f9b2d546829ee8e
Author: Michel Dänzer <michel.daenzer at amd.com>
Date:   Thu Feb 7 17:35:13 2019 +0100

    gitlab-ci: Only run docker-image stage if relevant source files change
    
    Otherwise there's normally no need to run it. It will also run when a
    new branch is created, which ensures that the docker image always exists
    (e.g. in a newly forked repository).
    
    Inspired by https://gitlab.freedesktop.org/mesa/mesa/merge_requests/143

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4f63840..cad343b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -24,6 +24,10 @@ stages:
 
 debian-testing:
   stage: docker-image
+  only:
+    changes:
+      - .gitlab-ci.yml
+      - .gitlab-ci/Dockerfile
   image:
     name: gcr.io/kaniko-project/executor:debug
     entrypoint: [""]


More information about the xorg-commit mailing list