LDP/.github/drone.yml

31 lines
784 B
YAML
Raw Normal View History

2024-01-07 17:03:59 +00:00
# (C) Serge Victor 2020-2024, GPLv3 License
2024-01-07 08:40:51 +00:00
#
# recently build version of documents is available on permanent storage disk mounted on /LDP
kind: pipeline
type: docker
name: 🗃 LDP Builder
2024-01-07 17:03:59 +00:00
workspace:
path: /builder/src
2024-01-07 08:40:51 +00:00
steps:
- name: Martin's builder
image: tldp/builder:latest
2024-01-08 04:17:04 +00:00
volumes:
- name: LDPPRs
path: /builder/PRs
2024-01-07 08:40:51 +00:00
commands:
- ldptool --dump-cfg
2024-01-08 04:17:04 +00:00
- mkdir -p /builder/PRs/BUILD
- mkdir -p /builder/PRs/MAIN
- ldptool --loglevel info --builddir /builder/PRs/BUILD --configfile .github/builder-pr.ldptool.cfg --pubdir /builder/PRs/MAIN --list
- ldptool --loglevel info --builddir /builder/PRs/BUILD --configfile .github/builder-pr.ldptool.cfg --pubdir /builder/PRs/MAIN --publish
volumes:
- name: LDPPRs
2024-01-08 04:20:07 +00:00
host:
path: /LDP/PRs
2024-01-08 04:17:04 +00:00
# the happy end.