2023-06-26 16:14:23 +02:00
|
|
|
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 .
|
2023-06-26 16:21:18 +02:00
|
|
|
- git checkout $DRONE_COMMIT
|
2023-06-26 19:05:22 +02:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
exclude:
|
|
|
|
- renovate/*
|
2023-06-26 16:14:23 +02:00
|
|
|
- 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
|
2023-06-26 19:05:22 +02:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
exclude:
|
|
|
|
- renovate/*
|
2023-06-26 16:14:23 +02:00
|
|
|
|
|
|
|
volumes:
|
|
|
|
- name: cache
|
|
|
|
temp: {}
|