Use docker to generate PDF, and add CI.
continuous-integration/drone/tag Build is failing
Details
continuous-integration/drone/tag Build is failing
Details
This commit is contained in:
parent
095d7bbf75
commit
f978f09887
|
|
@ -0,0 +1,23 @@
|
|||
kind: pipeline
|
||||
name: ccr
|
||||
type: docker
|
||||
|
||||
steps:
|
||||
- name: generate-pdf
|
||||
image: git.axpdsp.org/parliamentarian/bylaw-builder
|
||||
commands:
|
||||
- "make"
|
||||
- "date -I > title"
|
||||
- name: publish
|
||||
image: plugins/gitea-release
|
||||
settings:
|
||||
base_url: https://gitea.axpdsp.org
|
||||
api_key:
|
||||
from_secret: api_key
|
||||
files:
|
||||
- code.pdf
|
||||
title: title
|
||||
|
||||
trigger:
|
||||
event:
|
||||
- tag
|
||||
|
|
@ -3,7 +3,5 @@
|
|||
* Generating PDFs
|
||||
A PDF can be generated using the following command:
|
||||
#+begin_src bash
|
||||
guix shell -m manifest.scm -- make
|
||||
docker run --rm -v $PWD:/data -w /data git.axpdsp.org/parliamentarian/bylaw-builder make
|
||||
#+end_src
|
||||
Assuming that [[https://guix.gnu.org/][GNU Guix]] is installed, this command will handle downloading all
|
||||
dependencies, generating a pdf, and cleaning up temporary files.
|
||||
|
|
|
|||
|
|
@ -1,6 +0,0 @@
|
|||
;; What follows is a "manifest" equivalent to the command line you gave.
|
||||
;; You can store it in a file that you may then pass to any 'guix' command
|
||||
;; that accepts a '--manifest' (or '-m') option.
|
||||
|
||||
(specifications->manifest
|
||||
(list "emacs-next" "texlive" "make" "git"))
|
||||
|
|
@ -6,12 +6,12 @@
|
|||
("\\chapter{%s}" . "\\chapter*{%s}")
|
||||
("\\section{%s}" . "\\section*{%s}"))))
|
||||
|
||||
(setopt org-latex-hyperref-template "
|
||||
(setq org-latex-hyperref-template "
|
||||
\\hypersetup{\n pdfauthor={%a},\n pdftitle={%t},\n pdfkeywords={%k},
|
||||
pdfsubject={%d},\n pdfcreator={%c},\n pdflang={%L},\n colorlinks=true}\n")
|
||||
|
||||
(keymap-local-set
|
||||
"C-c t"
|
||||
(local-set-key
|
||||
(kbd "C-c t")
|
||||
(lambda nil
|
||||
(interactive)
|
||||
(save-match-data
|
||||
|
|
|
|||
Loading…
Reference in New Issue