From 16e886ca3ed25a1f39eaf0ba74d6ab91b88f55e3 Mon Sep 17 00:00:00 2001 From: LoveIsGrief <loveisgrief@tuta.io> Date: Wed, 27 Jan 2021 19:53:47 +0100 Subject: [PATCH] CI: quiet down wget --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ca6bd9efdd..7da1379c71 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,14 +36,14 @@ test:ant: - apt-get update -q - apt-get install -y wget ant libmockito-java libhamcrest-java default-jdk-headless # Install specific version of scala - - wget -O scala.deb "${SCALA}" + - wget -qO scala.deb "${SCALA}" - dpkg -i scala.deb # link to the scala libs with the name `ant test` expects - cd /usr/share/scala/lib/ - ln -s scala-xml_2.12-1.0.6.jar scala-xml.jar # Download required scala libs - - wget -O scalactic.jar "${LIB_SCALACTIC}" - - wget -O scalatest.jar "${LIB_SCALATEST}" + - wget -qO scalactic.jar "${LIB_SCALACTIC}" + - wget -qO scalatest.jar "${LIB_SCALATEST}" # Point ant to the right directories - echo " scalatest.libs=/usr/share/scala/lib -- GitLab