forked from wtf-eg/handbuch-gen
44 lines
949 B
YAML
44 lines
949 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: docker
|
||
|
name: amd64-main
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
trigger:
|
||
|
branch:
|
||
|
- main
|
||
|
event:
|
||
|
- push
|
||
|
- pull_request
|
||
|
|
||
|
steps:
|
||
|
- name: submodules
|
||
|
image: alpine
|
||
|
environment:
|
||
|
SSH_KEY:
|
||
|
from_secret: SSH_KEY
|
||
|
commands:
|
||
|
- apk add openssh git
|
||
|
- mkdir -p /root/.ssh
|
||
|
- echo "$SSH_KEY" > /root/.ssh/id_rsa
|
||
|
- chmod 600 /root/.ssh/id_rsa
|
||
|
- echo "git.wtf-eg.de ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEjyrSgFgb+/ubyFDl3zvWSIfX+MLzRQUEtjdq1yeTd9" >> /root/.ssh/known_hosts
|
||
|
- chmod 600 /root/.ssh/known_hosts
|
||
|
- git submodule update --init --recursive
|
||
|
- name: build
|
||
|
image: sphinxdoc/sphinx-latexpdf:5.0.2
|
||
|
commands:
|
||
|
- apt-get update
|
||
|
- apt-get -y install texlive-lang-german rsync
|
||
|
- pip install -r requirements.txt
|
||
|
- make -j4 bundle
|
||
|
|
||
|
---
|
||
|
kind: signature
|
||
|
hmac: a0a4b7ba82017ec84889766fe8b15b8acbea104753bfe3ff61c212686122ea02
|
||
|
|
||
|
...
|