Skip to content

Commit

Permalink
Fixing CI. (#150)
Browse files Browse the repository at this point in the history
* Attempt to fix CI tests 1.

* Investigate windows runner.

* Move debug prints in non-caching place.

* Listing ntu directory.

* Move checks forward.

* Attempts to use different script file.

* Found problem fix.

* Recover *nix tests.
  • Loading branch information
cheatfate authored May 1, 2024
1 parent 856514a commit 33761a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,5 +164,4 @@ jobs:
nimble --version
nimble install -y --depsOnly
rm -f nimble.lock
#nimble test # can't find or run "ntu" on Windows
ntu test tests
nimble test
5 changes: 4 additions & 1 deletion chronicles.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,7 @@ else:
requires "testutils"

task test, "run CPU tests":
exec "ntu test tests"
when defined(windows):
exec "ntu.cmd test tests"
else:
exec "ntu test tests"

0 comments on commit 33761a5

Please sign in to comment.