From 61626b0adbfa692eea3fc5118d14500122377c7e Mon Sep 17 00:00:00 2001 From: David Knothe Date: Thu, 26 Aug 2021 16:48:31 +0200 Subject: [PATCH] Fix appveyor --- .appveyor.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 41b50a4e..fb54c0d8 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -27,12 +27,11 @@ install: - "cabal --version" - "ghc --version" - "cabal %CABOPTS% v2-update -vverbose+nowrap" - - "cabal %CABOPTS% v2-install alex --bindir=/hsbin" - - "alex --version" build: off test_script: - "cd %APPVEYOR_BUILD_FOLDER%" - - "make sdist" - - "make sdist-test-only" + - "cabal install happy -f -bootstrap --installdir=./bootstrap-root" + - "cabal build happy -f +bootstrap --with-happy=%APPVEYOR_BUILD_FOLDER%/bootstrap-root/happy" + - "cabal test -f +bootstrap"