[gnome-music] gitlabci: add nogpgcheck



commit bce551f37ff1e28f79170205f5ca2f545d53a735
Author: Vadim Rutkovsky <vrutkovs redhat com>
Date:   Mon Sep 21 18:43:23 2015 +0200

    gitlabci: add nogpgcheck

 .gitlab-ci.yml |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 049b599..ce1668a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -10,7 +10,7 @@ variables:
 build:
   stage: build
   script:
-    - dnf update -y && dnf install -y $DEPENDENCIES
+    - dnf update -y --nogpgcheck && dnf install -y --nogpgcheck $DEPENDENCIES
     - git submodule update --init
     - ./autogen.sh
     - make
@@ -18,7 +18,7 @@ build:
 deploy:
   stage: deploy
   script:
-    - dnf update -y && dnf install -y $DEPENDENCIES
+    - dnf update -y --nogpgcheck && dnf install -y --nogpgcheck $DEPENDENCIES
     - git submodule update --init
     - ./autogen.sh
     - make distcheck
@@ -28,12 +28,12 @@ deploy:
 pyflakes:
   stage: check
   script:
-    - dnf update -y && dnf install -y python3-pyflakes
+    - dnf update -y --nogpgcheck && dnf install -y --nogpgcheck python3-pyflakes
     - python3-pyflakes .
 
 pep8:
   stage: check
   script:
-    - dnf update -y && dnf install -y python3-pep8
+    - dnf update -y --nogpgcheck && dnf install -y --nogpgcheck python3-pep8
     - python3-pep8 --ignore=E501,E225,E265,E402 --show-source --show-pep8 .
   allow_failure: true
\ No newline at end of file


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]