From 8eedf78bfb5dc2cdbd1de1095838032440233c2a Mon Sep 17 00:00:00 2001 From: Alejandro Lopez Gestoso <alopez@iri.upc.edu> Date: Fri, 17 May 2019 13:00:39 +0200 Subject: [PATCH] Replaced apt-get by apt. Removed option --allow-unauthenticated --- .gitlab-ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index feff2a7..e6f526e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -9,10 +9,10 @@ build-package: stage: build script: # Uncomment to install dependencies -# - apt-get update -# - apt-get -y --allow-unauthenticated install iri-<package_name>-dev - - apt-get update - - apt-get -y --allow-unauthenticated install iri-iriutils-dev +# - apt update +# - apt -y iri-<package_name>-dev + - apt update + - apt -y install iri-iriutils-dev - mkdir -pv build - cd build - cmake -D CMAKE_BUILD_TYPE=RELEASE -DCPACK_PACKAGE_VERSION=$CI_COMMIT_TAG .. -- GitLab