diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6a4a1e0e9b534e4b227f2c9cda29c60092e4fc43..06ab8a1f93439dfa1d12d2ed928825be2ea2252d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,8 +2,8 @@ image: ubuntu:bionic before_script: - dpkg --add-architecture i386 - - apt-get -q update - - apt-get -q install -y libx11-dev:i386 libc6-dev-i386 libx11-dev libc6-dev build-essential + - apt-get -qq update + - apt-get -qq install -y libx11-dev:i386 libc6-dev-i386 libx11-dev libc6-dev build-essential stages: - build @@ -20,9 +20,9 @@ make: unit-tests: stage: test script: - - apt-get -q install -y software-properties-common + - apt-get -qq install -y software-properties-common - add-apt-repository -y ppa:snaipewastaken/ppa - - apt-get -q install -y criterion-dev + - apt-get -qq install -y criterion-dev - make test - ./test/test tags: @@ -31,9 +31,9 @@ unit-tests: publish-docs: stage: deploy script: - - apt-get -q update - - apt-get -q install -y doxygen graphviz - - 'which ssh-agent || ( apt-get -q update -y && apt-get -q install openssh-client -y )' + - apt-get -qq update + - apt-get -qq install -y doxygen graphviz + - 'which ssh-agent || ( apt-get -qq update -y && apt-get -qq install openssh-client -y )' - eval $(ssh-agent -s) - echo "$DOCS_SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add - > /dev/null - mkdir -p ~/.ssh