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
|
2023-12-04 19:45:08 +01:00
|
|
|
image: git.wtf-eg.de/kompetenzinventar/builder:1.0.2
|
2023-11-06 23:15:58 +01:00
|
|
|
commands:
|
|
|
|
- pipenv install --dev
|
|
|
|
- pipenv run flake8
|
|
|
|
- pipenv run reuse lint
|
|
|
|
- pipenv run python -m unittest discover ki
|
|
|
|
|
|
|
|
image_pull_secrets:
|
|
|
|
- dockerconfig
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: build
|
|
|
|
|
|
|
|
trigger:
|
|
|
|
event:
|
|
|
|
- push
|
|
|
|
branch:
|
|
|
|
- main
|
|
|
|
|
|
|
|
depends_on:
|
|
|
|
- qa
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: docker-publish
|
|
|
|
image: plugins/docker
|
|
|
|
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
|
|
|
|
image: appleboy/drone-ssh
|
|
|
|
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
|
2023-12-04 19:45:08 +01:00
|
|
|
image: git.wtf-eg.de/kompetenzinventar/builder:1.0.2
|
2023-11-06 23:15:58 +01:00
|
|
|
commands:
|
|
|
|
- pipenv install --dev
|
|
|
|
- pipenv run flake8
|
|
|
|
- pipenv run reuse lint
|
|
|
|
- pipenv run python -m unittest discover ki
|
|
|
|
- name: docker-publish
|
|
|
|
image: plugins/docker
|
|
|
|
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"
|