diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 314bbf1bd18cd39abb79610b01388c0b174abf49..6e793575f48d5bfce78962438b5fa822bdeea0fc 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -62,7 +62,6 @@ lint-docker-compose: - 'apk add --no-cache bash wget' - 'wget https://github.com/mikefarah/yq/releases/download/v${VERSION}/${BINARY} -O /usr/bin/yq && chmod +x /usr/bin/yq' script: - - "bash .scripts/check-compose.sh" - "diff <(yq '.volumes' docker-compose.yml) <(yq '.volumes' .docker/docker-compose.yml)" - "IGNORE_IMAGE=1 IGNORE_PORTS=1 bash .scripts/check-service.sh 'dbrepo-analyse-service'" - "IGNORE_PORTS=1 bash .scripts/check-service.sh 'dbrepo-auth-db'" diff --git a/.scripts/check-compose.sh b/.scripts/check-compose.sh deleted file mode 100644 index 82f1a5170701886910ca6a36453aeab1ce1be625..0000000000000000000000000000000000000000 --- a/.scripts/check-compose.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash -OUTPUT=$(cat .docker/docker-compose.yml | grep "registry.datalab.tuwien.ac.at/.*" | grep -v "$APP_VERSION") -if [ $? -ne 1 ]; then - echo "[ERROR] Some image version(s) differ from APP_VERSION=${APP_VERSION}: ${OUTPUT}" - exit 1 -fi \ No newline at end of file