You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by gi...@apache.org on 2020/12/29 13:19:58 UTC

[buildstream] branch jjardon/debian-9_testing created (now 591150b)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch jjardon/debian-9_testing
in repository https://gitbox.apache.org/repos/asf/buildstream.git.


      at 591150b  .gitlab-ci.yml: Run test in current Debian stable (stretch)

This branch includes the following new commits:

     new 0257c77  .gitlab-ci.yml: Remove unneded declaration of dependencies:
     new 591150b  .gitlab-ci.yml: Run test in current Debian stable (stretch)

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[buildstream] 01/02: .gitlab-ci.yml: Remove unneded declaration of dependencies:

Posted by gi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch jjardon/debian-9_testing
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 0257c779eae85cc39ef912afe39ca92227cd4877
Author: Javier Jardón <jj...@gnome.org>
AuthorDate: Wed Apr 25 16:41:50 2018 +0100

    .gitlab-ci.yml: Remove unneded declaration of dependencies:
    
    "artifacts from all previous stages are passed by default."
    https://docs.gitlab.com/ee/ci/yaml/#dependencies
---
 .gitlab-ci.yml | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a7a4629..be8529a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -114,8 +114,6 @@ analysis:
   artifacts:
     paths:
     - coverage-linux/
-  dependencies:
-  - source_dist
 
 tests-debian-8:
   <<: *linux-tests
@@ -158,8 +156,6 @@ tests-unix:
     - coverage-unix/
     - logs-unix/
 
-  dependencies:
-  - source_dist
 
 # Automatically build documentation for every commit, we want to know
 # if building documentation fails even if we're not deploying it.
@@ -179,8 +175,6 @@ docs:
   artifacts:
     paths:
     - public/
-  dependencies:
-  - source_dist
 
 
 #####################################################
@@ -202,19 +196,11 @@ coverage:
     - ls coverage.*
     - coverage combine --rcfile=../.coveragerc -a coverage.*
     - coverage report --rcfile=../.coveragerc -m
-  dependencies:
-  - tests-debian-8
-  - tests-fedora-27
-  - tests-unix
-  - source_dist
 
 # Deploy, only for merges which land on master branch.
 #
 pages:
   stage: post
-  dependencies:
-  - source_dist
-  - docs
   script:
   - find public/
   artifacts:


[buildstream] 02/02: .gitlab-ci.yml: Run test in current Debian stable (stretch)

Posted by gi...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch jjardon/debian-9_testing
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 591150b598e3518bc04861dba81b4d069c4ea948
Author: Javier Jardón <jj...@gnome.org>
AuthorDate: Thu Apr 19 11:26:49 2018 +0100

    .gitlab-ci.yml: Run test in current Debian stable (stretch)
---
 .gitlab-ci.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index be8529a..27481ad 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -118,6 +118,10 @@ analysis:
 tests-debian-8:
   <<: *linux-tests
 
+tests-debian-9:
+  image: buildstream/buildstream-debian:master-81-caa5241
+  <<: *linux-tests
+
 tests-fedora-27:
   image: buildstream/buildstream-fedora:master-56-5d7ee17
   <<: *linux-tests