From 17d1a9619c6554756ffa6631c9da3b9293d0767a Mon Sep 17 00:00:00 2001 From: Ryan <2804894-ryannathans@users.noreply.gitlab.com> Date: Thu, 2 Mar 2023 13:35:47 +0000 Subject: [PATCH] Moved jq installation to run on json verification gitlab pipeline only --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5d3b3ba38..4f108676e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,7 +10,6 @@ variables: image: maven:3-openjdk-11 before_script: - - apt-get update -qq && apt-get install -qq -y --no-install-recommends jq - free -mh # Cache downloaded dependencies and plugins between builds. @@ -31,6 +30,7 @@ verify:jdk11: test:json: stage: test script: + - apt-get update -qq && apt-get install -qq -y --no-install-recommends jq - 'find . -name \*.json -type f -print0 | xargs -0 -n1 -P8 jq empty' except: variables: