aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-05-04 09:34:26 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2020-05-04 09:34:26 -0700
commit9e5ccaca61832df4c2f68ab873f79c7baa5b0425 (patch)
treef7365bd6c79fa40b2c94823af2102af17176c120 /.github
parent680793803ad4f4c655d599542983048d08f7f17c (diff)
downloadpandoc-9e5ccaca61832df4c2f68ab873f79c7baa5b0425.tar.gz
Revert "Use 'set __COMPAT_LAYER=' in Windows CI builds."
This reverts commit 030c23e04970570ec6f6aa574da33193366d77a9.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml6
-rw-r--r--.github/workflows/nightly.yml2
2 files changed, 0 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ac0e39bb6..05bb75f7f 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -119,19 +119,13 @@ jobs:
# key: ${{ runner.os }}-stack-work-${{ hashFiles('stack.yaml') }}
# restore-keys: ${{ runner.os }}-stack-work
- # Note: the set __COMPAT_LAYER= is needed to avoid an access
- # violation error; see
- # https://github.com/commercialhaskell/stack/issues/3765
-
- name: Install dependencies
run: |
- set __COMPAT_LAYER=
stack update
stack test --dependencies-only --fast
- name: Build and test
shell: cmd
run: |
- set __COMPAT_LAYER=
stack test --fast --test-arguments=--hide-successes
macos:
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 2b391cada..95bba5949 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -48,7 +48,6 @@ jobs:
choco install haskell-stack
- name: Install dependencies
run: |
- set __COMPAT_LAYER=
stack update
stack build --dependencies-only pandoc pandoc-citeproc
- name: Build artifacts
@@ -57,7 +56,6 @@ jobs:
for /f %%a in ('powershell -Command "Get-Date -format yyyy-MM-dd"') do set THEDATE=%%a
set ARTIFACTS=%CD%\nightly-windows\pandoc-nightly-windows-%THEDATE%
mkdir %ARTIFACTS%
- set __COMPAT_LAYER=
stack build pandoc pandoc-citeproc
forfiles /P .\.stack-work\install /M pandoc*.exe /S /C "cmd /C copy @path %%ARTIFACTS%%"
copy COPYRIGHT %ARTIFACTS%