From 29b37f9136ac1c354717ac97c09d531f2a1800d7 Mon Sep 17 00:00:00 2001 From: jo <ljonas@riseup.net> Date: Mon, 12 Dec 2022 17:49:11 +0100 Subject: [PATCH] ci: reuse shared ci templates for pre-commit --- .gitlab-ci.yml | 19 ++++++------------- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 108bfc6..5d3b535 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,8 @@ +--- +include: + - project: funkwhale/ci + file: /templates/pre-commit.yml + stages: - lint - test @@ -11,19 +16,7 @@ variables: DOCKER_TLS_CERTDIR: "" pre-commit: - stage: lint - image: python:3.11 - variables: - PIP_CACHE_DIR: $CI_PROJECT_DIR/.cache/pip - PRE_COMMIT_HOME: $CI_PROJECT_DIR/.cache/pre-commit - cache: - paths: - - $PIP_CACHE_DIR - - $PRE_COMMIT_HOME - before_script: - - pip3 install pre-commit - script: - - pre-commit run --verbose --all --color=always --show-diff-on-failure + extends: [.pre-commit] #tests: # stage: test -- GitLab