Skip to content

Commit

Permalink
Meta: wip CI test
Browse files Browse the repository at this point in the history
  • Loading branch information
alimpfard committed Oct 29, 2023
1 parent 252eebc commit 4c4a165
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions jakttest/run_one.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4c4a165

Please sign in to comment.