aboutsummaryrefslogtreecommitdiff
path: root/.build.yml
blob: 5af08b4e1e873ab22a02de4b12e9e1a111bd1a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
image: debian/testing
packages:
    - pandoc
    - weasyprint
    - poppler-utils
sources:
    - https://git.sr.ht/~boringcactus/crowbar-spec
tasks:
    - page-count: |
        cd crowbar-spec
        files="index vs-c tagged-unions types safety errors syntax LICENSE"
        html_files=""
        i=0
        for file in $files
        do
            pandoc --defaults=etc/md.yml --number-offset=$i -o $file.html $file.md
            html_files="$html_files $file.html"
            i=$((i+1))
        done
        if git describe --tags --exact-match 2>/dev/null
        then
            metadata="subtitle=$(git describe --tags --exact-match)"
        else
            metadata="version=$(git log -1 --no-decorate --oneline)"
        fi
        pandoc --defaults=etc/pdf.yml -o ../spec.pdf -M $metadata $html_files
        cd ..
        pdfinfo spec.pdf | grep Pages
        tar czvf spec-html.tar.gz crowbar-spec/*.html
artifacts:
    - spec.pdf
    - spec-html.tar.gz