Skip to content

Commit 9a2a91b

Browse files
committed
do not test JS target on Nim 1.6 #123
1 parent ba60d6f commit 9a2a91b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
# xxx trim to on use latest in each branch eg 1.0.10, 1.2.8 etc
16-
nim: [1.6.12]
16+
nim: [1.0.0, 1.0.2, 1.0.4, 1.0.10, 1.2.0, 1.2.2, 1.2.4, 1.2.6, 1.2.12, 1.4.0, 1.4.2, 1.4.8, 1.6.14]
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Run Tests

regex.nimble

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ task test2, "Test":
2424
# the docker image for CI has it since Nim 1.0.4,
2525
# so I'll only test it there
2626
when (NimMajor, NimMinor, NimPatch) >= (1, 0, 4) and
27-
(NimMajor, NimMinor) != (1, 4): # issue #88
27+
(NimMajor, NimMinor) != (1, 4) and # issue #88
28+
(NimMajor, NimMinor) != (1, 6): # issue #123
2829
exec "nim js -r src/regex.nim"
2930
exec "nim js -r tests/tests2.nim"
3031
exec "nim js -r -d:forceRegexAtRuntime tests/tests2.nim"

0 commit comments

Comments
 (0)