Skip to content
Snippets Groups Projects
Verified Commit 3a5d8c03 authored by Karel van Klink's avatar Karel van Klink :smiley_cat:
Browse files

Skip CI on release branches since this always fails anyway

parent 1c2b47fa
No related branches found
No related tags found
1 merge request!316Replace Sphinx with MkDocs
Pipeline #90758 passed
......@@ -13,10 +13,10 @@ run-tox-pipeline:
tags:
- docker-executor
image: python:3.12
except:
- /^release\/*/
services:
- postgres:14
# Change pip's cache directory to be inside the project directory since we can
# only cache local items.
variables:
......@@ -25,22 +25,18 @@ run-tox-pipeline:
POSTGRES_PASSWORD: nwa
DATABASE_HOST: "postgres"
PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
cache:
key: tox-virtualenv
paths:
- .cache/pip
- venv/
before_script:
- pip install virtualenv
- virtualenv venv
- . venv/bin/activate
- pip install tox
script:
- tox
artifacts:
paths:
- htmlcov
......@@ -51,12 +47,10 @@ build-documentation:
tags:
- docker-executor
image: python:3.12
before_script:
- cd $CI_PROJECT_DIR/docs
script:
- /bin/sh ./build-docs.sh
artifacts:
paths:
- docs/public
......@@ -67,17 +61,14 @@ lint-documentation:
image:
name: jdkato/vale:latest
entrypoint: [""]
tags:
- docker-executor
needs:
- job: build-documentation # Only run when documentation has been built
artifacts: true
before_script:
- cd $CI_PROJECT_DIR/docs/vale
- vale sync
script:
- vale --glob='!*/migrations/*' $CI_PROJECT_DIR/docs/source $CI_PROJECT_DIR/gso/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment