Skip to content
Snippets Groups Projects

Add Python depencies update task for templated projects

Merged Bastien Abadie requested to merge template-bumps into master
1 file
+ 19
0
Compare changes
  • Side-by-side
  • Inline
@@ -21,6 +21,9 @@ test:
# Download OpenAPI schema from last backend build
- curl https://assets.teklia.com/arkindex/openapi.yml > schema.yml
except:
- schedules
script:
- tox
@@ -39,6 +42,9 @@ lint:
before_script:
- pip install pre-commit
except:
- schedules
script:
- pre-commit run -a
@@ -51,6 +57,9 @@ docker-build:
DOCKER_DRIVER: overlay2
DOCKER_HOST: tcp://docker:2375/
except:
- schedules
script:
- ci/build.sh
@@ -63,3 +72,13 @@ release-notes:
script:
- devops release-notes
bump-python-deps:
stage: release
image: registry.gitlab.com/teklia/devops:latest
only:
- schedules
script:
- devops python-deps requirements.txt
Loading