diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e93cad2aa..02f8a300b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -145,7 +145,7 @@ jobs: run: cmake --build build - name: Test Jakt Stage 1 - run: .\build\bin\jakttest.exe --cpp-compiler "$env:CXX_COMPILER_BIN/clang++.exe" + run: .\build\bin\jakttest.exe --cpp-compiler "${{ env.CXX_COMPILER_BIN }}/clang++.exe" # FIXME: Share this better with unix job? - name: Install jakt diff --git a/jakttest/run_one.py b/jakttest/run_one.py index ab4b71c30..5258460b0 100644 --- a/jakttest/run_one.py +++ b/jakttest/run_one.py @@ -62,6 +62,8 @@ def main(): if args.cpp_include and not args.cpp_include == "none": cpp_include = f"-I{Path(test_file.parent, args.cpp_include)}" + print(f"Compiling test {test_file} with {cpp_compiler}") + # clear the temp directory for f in os.listdir(temp_dir): os.remove(temp_dir / f)