add drone config
Einige Prüfungen sind fehlgeschlagen
continuous-integration/drone/push Build is failing

Dieser Commit ist enthalten in:
Nick Slowinski 2023-06-26 16:14:23 +02:00
Ursprung c0440c9780
Commit bbc9548a93
Signiert von: nickslowinski
GPG-Schlüssel-ID: A28671573AA347CC

35
.drone.yml Normale Datei
Datei anzeigen

@ -0,0 +1,35 @@
name: amd64
kind: pipeline
type: docker
platform:
os: linux
arch: amd64
clone:
disable: true
steps:
- name: clone
image: registry.access.redhat.com/ubi9/python-311:1-12
volumes:
- name: cache
path: /opt/app-root/src
commands:
- mkdir ~/docs && cd ~/docs
- git clone $DRONE_REPO_LINK .
- git checkout $DRONE_COMMIT -b $DRONE_BRANCH
- name: build
image: registry.access.redhat.com/ubi9/python-311:1-12
volumes:
- name: cache
path: /opt/app-root/src
commands:
- cd ~/docs
- pip install --upgrade pip
- pip install -r requirements.txt
- mkdocs build
volumes:
- name: cache
temp: {}