Skip to content

Commit

Permalink
test js on Nim 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
nitely committed Oct 22, 2023
1 parent 577c4ec commit defefca
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions regex.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ task test2, "Test":
# the docker image for CI has it since Nim 1.0.4,
# so I'll only test it there
when (NimMajor, NimMinor, NimPatch) >= (1, 0, 4) and
(NimMajor, NimMinor) != (1, 4) and # issue #88
(NimMajor, NimMinor) != (1, 6): # issue #123
(NimMajor, NimMinor) != (1, 4): # issue #88
exec "nim js -r src/regex.nim"
exec "nim js -r tests/tests2.nim"
exec "nim js -r -d:forceRegexAtRuntime tests/tests2.nim"
Expand All @@ -48,8 +47,7 @@ task oldtest, "Test":
# the docker image for CI has it since Nim 1.0.4,
# so I'll only test it there
when (NimMajor, NimMinor, NimPatch) >= (1, 0, 4) and
(NimMajor, NimMinor) != (1, 4) and # issue #88
(NimMajor, NimMinor) != (1, 6):
(NimMajor, NimMinor) != (1, 4): # issue #88
exec "nim js -r tests/tests.nim"
exec "nim js -r -d:forceRegexAtRuntime tests/tests.nim"

Expand Down

0 comments on commit defefca

Please sign in to comment.