2021-07-05 19:42:30 +02:00
|
|
|
---
|
2021-07-05 19:37:05 +02:00
|
|
|
# SPDX-FileCopyrightText: WTF Kooperative eG <https://wtf-eg.de/>
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2021-06-15 18:31:39 +02:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
2023-11-06 23:15:58 +01:00
|
|
|
name: qa
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
steps:
|
2023-11-06 23:20:44 +01:00
|
|
|
- name: install-lint-test
|
2024-09-10 15:35:28 +02:00
|
|
|
image: python:3.8.20-alpine@sha256:b455239b49e4dbf53f506e0da4a922d5a23dba1526b90953660f3ca2355d27c2
|
2024-08-21 20:46:49 +02:00
|
|
|
env:
|
|
|
|
PYROOT: '/pyroot'
|
|
|
|
PYTHONUSERBASE: '/pyroot'
|
2023-11-06 23:15:58 +01:00
|
|
|
commands:
|
2024-08-21 20:46:49 +02:00
|
|
|
- apk add --no-cache gcc g++ musl-dev python3-dev
|
|
|
|
- pip3 install pipenv
|
2024-09-10 14:52:44 +02:00
|
|
|
- pipenv verify
|
2023-11-06 23:15:58 +01:00
|
|
|
- pipenv install --dev
|
|
|
|
- pipenv run flake8
|
|
|
|
- pipenv run reuse lint
|
|
|
|
- pipenv run python -m unittest discover ki
|
2024-09-10 12:56:04 +02:00
|
|
|
- name: docker-dry-run
|
|
|
|
image: plugins/docker:20.18.4@sha256:a8d3d86853c721492213264815f1d00d3ed13f42f5c1855a02f47fa4d5f1e042
|
|
|
|
settings:
|
|
|
|
registry: git.wtf-eg.de
|
|
|
|
repo: git.wtf-eg.de/kompetenzinventar/backend
|
|
|
|
target: ki-backend
|
|
|
|
dry_run: true
|
|
|
|
when:
|
|
|
|
event:
|
|
|
|
- pull_request
|
2023-11-06 23:15:58 +01:00
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: build
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- qa
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: docker-publish
|
2024-08-22 17:35:49 +02:00
|
|
|
image: plugins/docker:20.18.4@sha256:a8d3d86853c721492213264815f1d00d3ed13f42f5c1855a02f47fa4d5f1e042
|
2023-11-06 23:15:58 +01:00
|
|
|
settings:
|
2023-12-04 19:51:27 +01:00
|
|
|
registry: git.wtf-eg.de
|
|
|
|
repo: git.wtf-eg.de/kompetenzinventar/backend
|
2023-11-06 23:15:58 +01:00
|
|
|
target: ki-backend
|
|
|
|
auto_tag: true
|
|
|
|
username:
|
|
|
|
from_secret: "docker_username"
|
|
|
|
password:
|
|
|
|
from_secret: "docker_password"
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: deploy
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- build
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: deploy-dev
|
2024-08-22 11:35:42 +02:00
|
|
|
image: appleboy/drone-ssh:1.7.5@sha256:995677e073454912f26d4c0fdd2f9df2e1f5a30d6603d3f2ece667311b6babb3
|
2023-11-06 23:15:58 +01:00
|
|
|
settings:
|
|
|
|
host:
|
|
|
|
- dev01.wtf-eg.net
|
|
|
|
username: drone_deployment
|
|
|
|
key:
|
|
|
|
from_secret: "dev01_deployment_key"
|
|
|
|
command_timeout: 2m
|
|
|
|
script:
|
|
|
|
- echo "Executing forced command..."
|
|
|
|
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: tag-release
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- tag
|
2021-06-15 18:31:39 +02:00
|
|
|
|
|
|
|
steps:
|
2023-11-06 23:30:54 +01:00
|
|
|
- name: install-lint-test
|
2024-09-10 15:35:28 +02:00
|
|
|
image: python:3.8.20-alpine@sha256:b455239b49e4dbf53f506e0da4a922d5a23dba1526b90953660f3ca2355d27c2
|
2024-08-21 20:46:49 +02:00
|
|
|
env:
|
|
|
|
PYROOT: '/pyroot'
|
|
|
|
PYTHONUSERBASE: '/pyroot'
|
2023-11-06 23:15:58 +01:00
|
|
|
commands:
|
2024-08-21 20:46:49 +02:00
|
|
|
- apk add --no-cache gcc g++ musl-dev python3-dev
|
|
|
|
- pip3 install pipenv
|
2023-11-06 23:15:58 +01:00
|
|
|
- pipenv install --dev
|
|
|
|
- pipenv run flake8
|
|
|
|
- pipenv run reuse lint
|
|
|
|
- pipenv run python -m unittest discover ki
|
|
|
|
- name: docker-publish
|
2024-08-22 17:35:49 +02:00
|
|
|
image: plugins/docker:20.18.4@sha256:a8d3d86853c721492213264815f1d00d3ed13f42f5c1855a02f47fa4d5f1e042
|
2023-11-06 23:15:58 +01:00
|
|
|
settings:
|
2023-12-04 19:51:27 +01:00
|
|
|
registry: git.wtf-eg.de
|
|
|
|
repo: git.wtf-eg.de/kompetenzinventar/backend
|
2023-11-06 23:15:58 +01:00
|
|
|
target: ki-backend
|
|
|
|
auto_tag: true
|
|
|
|
username:
|
|
|
|
from_secret: "docker_username"
|
|
|
|
password:
|
|
|
|
from_secret: "docker_password"
|