mirror of
https://github.com/luau-lang/luau.git
synced 2025-05-04 10:33:46 +01:00
really skip cmake stuff if cache hit
This commit is contained in:
parent
40659fcb6e
commit
364d0c76c3
1 changed files with 3 additions and 3 deletions
6
.github/workflows/prototyping.yml
vendored
6
.github/workflows/prototyping.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue