From 364d0c76c3e88f993b58ce56ac656303d3dfdbc9 Mon Sep 17 00:00:00 2001 From: Lily Brown Date: Thu, 17 Feb 2022 16:46:35 -0800 Subject: [PATCH] really skip cmake stuff if cache hit --- .github/workflows/prototyping.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prototyping.yml b/.github/workflows/prototyping.yml index 30b43675..637ed840 100644 --- a/.github/workflows/prototyping.yml +++ b/.github/workflows/prototyping.yml @@ -60,13 +60,13 @@ jobs: ~/.cabal/bin/agda --compile PrettyPrinter.agda ~/.cabal/bin/agda --compile Interpreter.agda - name: cmake configure - if: steps.luau-ast-cache.cache-hit != 'true' + if: steps.luau-ast-cache.outputs.cache-hit != 'true' run: | - mkdir build + mkdir -p build cd build cmake build ../ - name: cmake build luau-ast - if: steps.luau-ast-cache.cache-hit != 'true' + if: steps.luau-ast-cache.outputs.cache-hit != 'true' run: | cmake --build ./build --target Luau.Ast.CLI - name: run tests