geforkt von nick-slowinski.de/docs
„.drone.yml“ ändern
Einige Checks meldeten Fehler
continuous-integration/drone/push Build encountered an error
Einige Checks meldeten Fehler
continuous-integration/drone/push Build encountered an error
Dieser Commit ist enthalten in:
Ursprung
29ad6bc40b
Commit
0f6b938de6
1 geänderte Dateien mit 45 neuen und 0 gelöschten Zeilen
45
.drone.yml
45
.drone.yml
|
@ -43,6 +43,51 @@ trigger:
|
|||
- push
|
||||
- pull_request
|
||||
|
||||
---
|
||||
name: test
|
||||
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
|
||||
when:
|
||||
branch:
|
||||
exclude:
|
||||
- renovate/*
|
||||
- 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
|
||||
when:
|
||||
branch:
|
||||
exclude:
|
||||
- renovate/*
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- push
|
||||
- pull_request
|
||||
volumes:
|
||||
- name: cache
|
||||
temp: {}
|
Laden …
In neuem Issue referenzieren