You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2021/02/04 07:21:20 UTC

[buildstream] branch jjardon/security-scanner created (now d818627)

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

tvb pushed a change to branch jjardon/security-scanner
in repository https://gitbox.apache.org/repos/asf/buildstream.git.


      at d818627  WIP

This branch includes the following new commits:

     new 1da6f79  .gitlab-ci.yml: Use gitlab's built-in Dependency Scanning
     new ec11c24  WIP
     new e84bf73  WIP
     new d818627  WIP

The 4 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] 02/04: WIP

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

tvb pushed a commit to branch jjardon/security-scanner
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit ec11c24abdaf105222e24f94219dbdedf263851f
Author: Javier Jardón <jj...@gnome.org>
AuthorDate: Sat Nov 23 17:13:58 2019 +0900

    WIP
---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 821d643..1923495 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -27,6 +27,8 @@ variables:
   EXTERNAL_TESTS_COMMAND: "tox -e py{35,36,37}-external -- ${PYTEST_ARGS}"
   COVERAGE_PREFIX: "${CI_JOB_NAME}."
 
+before_script:
+  - apt-get update && apt-get install -y cython cython3
 
 #####################################################
 #                    Test stage                     #


[buildstream] 04/04: WIP

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

tvb pushed a commit to branch jjardon/security-scanner
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit d81862731c42a9265bf0b2ab6f8e2d84c7a98451
Author: Javier Jardón <jj...@gnome.org>
AuthorDate: Sat Nov 23 17:32:01 2019 +0900

    WIP
---
 .gitlab-ci.yml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 346c53c..36119bb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -28,8 +28,7 @@ variables:
   COVERAGE_PREFIX: "${CI_JOB_NAME}."
 
 before_script:
-  - cat /etc/os-release
-  - apt-get update && apt-get install -y cython cython3
+  - pip install cython
 
 #####################################################
 #                    Test stage                     #


[buildstream] 03/04: WIP

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

tvb pushed a commit to branch jjardon/security-scanner
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit e84bf7326a7f8fc59120885dd87a4906f5af9096
Author: Javier Jardón <jj...@gnome.org>
AuthorDate: Sat Nov 23 17:29:21 2019 +0900

    WIP
---
 .gitlab-ci.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1923495..346c53c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -28,6 +28,7 @@ variables:
   COVERAGE_PREFIX: "${CI_JOB_NAME}."
 
 before_script:
+  - cat /etc/os-release
   - apt-get update && apt-get install -y cython cython3
 
 #####################################################


[buildstream] 01/04: .gitlab-ci.yml: Use gitlab's built-in Dependency Scanning

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

tvb pushed a commit to branch jjardon/security-scanner
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 1da6f79036952097692b6dd081981e589ea58ff5
Author: Javier Jardón <jj...@gnome.org>
AuthorDate: Sat Nov 23 14:03:51 2019 +0900

    .gitlab-ci.yml: Use gitlab's built-in Dependency Scanning
    
    See https://docs.gitlab.com/ee/user/application_security/dependency_scanning/
---
 .gitlab-ci.yml | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1458d4d..821d643 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,5 +1,6 @@
 include:
   - template: Code-Quality.gitlab-ci.yml
+  - template: Dependency-Scanning.gitlab-ci.yml
   - template: License-Management.gitlab-ci.yml
   - template: SAST.gitlab-ci.yml
 
@@ -16,6 +17,7 @@ stages:
   - publish
 
 variables:
+  DS_DISABLE_DIND: "true"
   SAST_DISABLE_DIND: "true"
   SAST_GOSEC_LEVEL: 2
   PYTEST_ADDOPTS: "--color=yes"