Skip to content

Commit

Permalink
[CI] don't run bethe bloch example for now under windows
Browse files Browse the repository at this point in the history
For some reason in CI in this repo lapack isn't found using msys2. But
it works fine in ggplotnim using the same approach. Weird.
  • Loading branch information
Vindaar committed Jul 27, 2022
1 parent d772a5f commit 0e3a02e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion unchained.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ task installTestDeps, "Install dependencies to run tests in CI":
task test, "Runs the test":
exec "nim c -r tests/tunchained.nim"
exec "nim c -r tests/tresolveAlias.nim"
exec "nim c -r examples/bethe_bloch.nim"
when not defined(windows): # For some reason in CI in this repo lapack isn't found using msys2 (works in ggplotnim)
exec "nim c -r examples/bethe_bloch.nim"
exec "nim c -r examples/custom_unit_system.nim"

task regressionTests, "Run regression tests (require cligen)":
Expand Down

0 comments on commit 0e3a02e

Please sign in to comment.