aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2021-10-16 23:14:12 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2021-10-16 23:14:12 -0700
commitfcbfc8cd390da64817190e2feb3412aeaf54e911 (patch)
tree9ff28eef3a00dff6a83652a7046edbe21dc9bcdf /.github
parent3ddfb4cd6c41aede9f26db4cbfa2e73fa70aa473 (diff)
downloadpandoc-fcbfc8cd390da64817190e2feb3412aeaf54e911.tar.gz
CI: remove linux-pdf for now.
I don't know what is going on with lmodern and lualatex.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml57
1 files changed, 0 insertions, 57 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 16821547d..c75fcd213 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -125,63 +125,6 @@ jobs:
! grep -q ": *[Ww]arning:" build.log || exit 1
cabal ${{ matrix.versions.prefix }}test ${{ matrix.versions.cabalopts }} --disable-optimization ${{ matrix.versions.testopts }}
- linux-pdf:
-
- runs-on: ubuntu-18.04
- strategy:
- fail-fast: false
- matrix:
- pdfengine:
- - xelatex
- - lualatex
- - pdflatex
-
- steps:
- - uses: actions/checkout@v2
-
- - name: Install recent cabal/ghc
- uses: haskell/actions/setup@v1
- with:
- ghc-version: 8.10.4
- cabal-version: 3.2
-
- # needed by memory
- - name: Install numa
- run: sudo apt-get install libnuma-dev
-
- # needed to test pdf creation
- - name: Install texlive
- run: sudo apt-get install texlive-base texlive-latex-recommended texlive-xetex
-
- # declare/restore cached things
- # caching doesn't work for scheduled runs yet
- # https://github.com/actions/cache/issues/63
-
- - name: Cache cabal global package db
- id: cabal-global
- uses: actions/cache@v2
- with:
- path: |
- ~/.cabal
- key: ${{ runner.os }}-8.10.4-3.2-cabal-global-${{ hashFiles('cabal.project') }}
-
- - name: Cache cabal work
- id: cabal-local
- uses: actions/cache@v2
- with:
- path: |
- dist-newstyle
- key: ${{ runner.os }}-8.10.4-3.2-cabal-local
-
- - name: Install dependencies
- run: |
- cabal v2-update
- cabal v2-build --dependencies-only --enable-tests --disable-optimization
-
- - name: Test pdf creation with pdf-engine
- run: |
- cabal v2-run --disable-optimization pandoc -- --pdf-engine=${{ matrix.pdfengine }} -o out.pdf doc/getting-started.md
-
windows:
runs-on: windows-2019