From b00f57ac344696cec39d6f05417e70df402e07f2 Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Wed, 2 May 2018 12:12:14 -0500 Subject: [PATCH] Fix appveyor build Appveyor failed on latest release https://ci.appveyor.com/project/begriffs/postgrest/build/1.0.5 according to https://github.com/commercialhaskell/stack/issues/2617#issuecomment-271966495 this can be fixed by adding `-j1`. --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 19b793fa7..28214dead 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -28,7 +28,7 @@ install: build_script: - stack setup --no-terminal > nul -- stack build --copy-bins --local-bin-path . +- stack build -j1 --copy-bins --local-bin-path . artifacts: - path: postgrest.exe