From b229d56199f36647677c727f0e4f088a716ce2f6 Mon Sep 17 00:00:00 2001 From: Lars Falk-Petersen Date: Fri, 11 Oct 2024 11:02:59 +0200 Subject: [PATCH] Upgrade validator to 0.7.6 --- .gitlab-ci.yml | 2 +- tox.ini | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 580f5fc..b4185c9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -141,7 +141,7 @@ testapi: rules: - if: $CI_COMMIT_TAG script: - - VALIDATOR_IMAGE="ghcr.io/metno/sedr:0.7.5-2" + - VALIDATOR_IMAGE="ghcr.io/metno/sedr:0.7.6" - LAST_GIT_TAG=$(git describe --tags --match="v[0-9]*" --abbrev=0) - RELEASE_TAG="${LAST_GIT_TAG}-${CI_PIPELINE_IID}" - RELEASE_IMAGE_NAME="${CI_REGISTRY_IMAGE}:${RELEASE_TAG}" diff --git a/tox.ini b/tox.ini index 339fb54..5bac9ae 100644 --- a/tox.ini +++ b/tox.ini @@ -58,7 +58,7 @@ allowlist_externals = bash docker commands_pre = bash -c 'python app.py &> app.log & sleep 10' -commands = docker run --tty=true --network=host --rm -v .:/logs ghcr.io/metno/sedr:0.7.5-2 --log-file /logs/debug.log --openapi http://localhost:5000/api --url http://localhost:5000 +commands = docker run --tty=true --network=host --rm -v .:/logs ghcr.io/metno/sedr:0.7.6 --log-file /logs/debug.log --openapi http://localhost:5000/api --url http://localhost:5000 commands_post = bash -c 'sleep 10 && kill $(lsof -t -i:5000)' [testenv:lintci]