diff options
author | John MacFarlane <jgm@berkeley.edu> | 2020-06-14 10:06:21 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2020-06-14 10:06:21 -0700 |
commit | f699d64a1a75b672ce4ea1b57ce56889fe360df2 (patch) | |
tree | 409d9eb7f1e85ef6af6224477dfe1cdc1aa5cdad | |
parent | a0559d952bc36ed5ed0693fcde15e6bd59dcf5e7 (diff) | |
download | pandoc-f699d64a1a75b672ce4ea1b57ce56889fe360df2.tar.gz |
Switch CI to use ghc 8.8.3.
This should fix CI failures.
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/nightly.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05bb75f7f..77e0dd2f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: cabal: '2.4' - ghc: '8.6.5' cabal: '2.4' - - ghc: '8.8.1' + - ghc: '8.8.3' cabal: '3.0' - ghc: '8.10.1' cabal: '3.2' diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 0ee70d9f3..d5f26a733 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v1 - name: Install dependencies run: | - export PATH=/opt/cabal/3.0/bin:/opt/ghc/8.8.1/bin:$PATH + export PATH=/opt/cabal/3.0/bin:/opt/ghc/8.8.3/bin:$PATH ls /opt/cabal/*/bin ls /opt/ghc/*/bin ghc --version @@ -21,7 +21,7 @@ jobs: cabal v2-build --dependencies-only . pandoc-citeproc - name: Build run: | - export PATH=/opt/cabal/3.0/bin:/opt/ghc/8.8.1/bin:$PATH + export PATH=/opt/cabal/3.0/bin:/opt/ghc/8.8.3/bin:$PATH cabal v2-install . pandoc-citeproc strip $HOME/.cabal/bin/pandoc strip $HOME/.cabal/bin/pandoc-citeproc |