From 6dfb7152d410c77609c5ca303571c65d416a7c49 Mon Sep 17 00:00:00 2001 From: Andreas Brain Date: Wed, 17 Aug 2022 17:26:19 +0200 Subject: [PATCH 1/3] Initial build config for Drone --- .drone.yml | 43 +++++++++++++++++++++++++++++++++++++++++++ Makefile | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..29fae5c --- /dev/null +++ b/.drone.yml @@ -0,0 +1,43 @@ +--- +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 + +... diff --git a/Makefile b/Makefile index eeaed44..eb67eab 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ sphinx: rm build/singlehtml/_static/css/badge_only.css rm build/singlehtml/_static/epub_cover.png rm build/singlehtml/_static/german-stemmer.js - rm build/singlehtml/_static/jquery-3.5.1.js + rm build/singlehtml/_static/jquery-3.6.0.js rm build/singlehtml/_static/language_data.js rm build/singlehtml/_static/searchtools.js rm build/singlehtml/_static/underscore-1.13.1.js From fd9f84d86846fd3e068036914c9a197552e13a70 Mon Sep 17 00:00:00 2001 From: Andreas Brain Date: Wed, 17 Aug 2022 17:36:35 +0200 Subject: [PATCH 2/3] Clone submodule via SSH --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 367e717..4985392 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "handbuch"] path = source/handbuch - url = https://git.wtf-eg.de/wtf-eg/handbuch.git + url = gitea@git.wtf-eg.de:wtf-eg/handbuch.git From 233498ef5e717a8c2ad0313bcf58f0d33370cf65 Mon Sep 17 00:00:00 2001 From: Andreas Brain Date: Tue, 6 Sep 2022 22:01:21 +0200 Subject: [PATCH 3/3] Deploy build files to a Nextcloud folder --- .drone.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 29fae5c..a797ff1 100644 --- a/.drone.yml +++ b/.drone.yml @@ -35,9 +35,26 @@ steps: - apt-get -y install texlive-lang-german rsync - pip install -r requirements.txt - make -j4 bundle + - name: upload + image: alpine + environment: + NC_USER: + from_secret: nextcloud_user + NC_PASSWORD: + from_secret: nextcloud_password + commands: + - apk add curl + - curl -X PUT -u $NC_USER:$NC_PASSWORD https://work.wtf-eg.de/remote.php/dav/files/$NC_USER/Member-Handbuch/Das%20Handbuch%20zur%20WTF%20eG.pdf -T bundle/rtfm-dashandbuchzurwtfeg.pdf + - curl -X PUT -u $NC_USER:$NC_PASSWORD https://work.wtf-eg.de/remote.php/dav/files/$NC_USER/Member-Handbuch/Das%20Handbuch%20zur%20WTF%20eG.epub -T bundle/RTFM-DasHandbuchzurWTFeG.epub + when: + branch: + - main + event: + - push + --- kind: signature -hmac: a0a4b7ba82017ec84889766fe8b15b8acbea104753bfe3ff61c212686122ea02 +hmac: 84db7299d18047e70a324c4b059f8a2cdd13b497ac439264e4430a37e443c610 ...