From dbf35b4176c888c39d5078267f7e5f3ee027c190 Mon Sep 17 00:00:00 2001 From: "ajeffrey@roblox.com" Date: Tue, 8 Feb 2022 10:30:53 -0600 Subject: [PATCH] Get smoketest to run --- .github/workflows/prototyping.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/prototyping.yml b/.github/workflows/prototyping.yml index d0452b50..9a1b4f7f 100644 --- a/.github/workflows/prototyping.yml +++ b/.github/workflows/prototyping.yml @@ -26,11 +26,9 @@ jobs: - name: cabal install working-directory: prototyping run: | - ghc-pkg init package.db cabal install --lib scientific --package-env . cabal install --lib vector --package-env . cabal install --lib aeson --package-env . - ghc-pkg list cabal install Agda - name: check examples working-directory: prototyping @@ -44,7 +42,7 @@ jobs: run: cmake --build . --target Luau.Ast.CLI - name: run smoketest working-directory: prototyping - run: ../lua-ast Examples/SmokeTest.lua | ./PrettyPrinter > Examples/SmokeTestOutput.lua + run: ./lua-ast Examples/SmokeTest.lua | ./PrettyPrinter > Examples/SmokeTestOutput.lua - name: diff smoketest working-directory: prototyping run: diff Examples/SmokeTest.lua SmokeTestOutput.lua