From 87ff5b4da0d3edccd21c06114edcf772817a00a9 Mon Sep 17 00:00:00 2001 From: Georg Krause Date: Sun, 14 Nov 2021 14:49:26 +0100 Subject: [PATCH] Remove manual checking of dependencies in favor of upcoming renovate bot --- .gitlab-ci.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bc9bc5ea9..a3a493e33 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -361,29 +361,3 @@ build_api: - master@funkwhale/funkwhale - stable@funkwhale/funkwhale - develop@funkwhale/funkwhale - -check_api_dependencies: - interruptible: true - stage: deps - image: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_NAME - cache: - key: "$CI_PROJECT_ID__pip_cache" - paths: - - "$PIP_CACHE_DIR" - variables: - DJANGO_SETTINGS_MODULE: config.settings.local - POSTGRES_HOST_AUTH_METHOD: trust - only: - - branches - before_script: - - apk add make git gcc python3-dev musl-dev - - apk add postgresql-dev py3-psycopg2 libldap libffi-dev make zlib-dev jpeg-dev openldap-dev - - cd api - - pip3 install -r requirements/base.txt - - pip3 install -r requirements/local.txt - - pip3 install -r requirements/test.txt - script: - - $CI_PROJECT_DIR/scripts/check-api-deps.sh - tags: - - docker - allow_failure: true