diff options
-rw-r--r-- | .travis.yml | 8 | ||||
-rw-r--r-- | appveyor.yml | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index ffb0033a3..96f2eb1a3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,8 +32,8 @@ before_script: - export PATH=$(pwd)/bin:$(pwd)/fasm:$PATH script: - nim c koch - - ./koch boot - - ./koch boot -d:release + - ./koch boot -d:nimCoroutines + - ./koch boot -d:release -d:nimCoroutines - ./koch nimble - nim e tests/test_nimscript.nims - nimble install zip -y @@ -41,7 +41,7 @@ script: - nimble install sdl1 - nimble install jester@#head - nimble install niminst - - nim c --taintMode:on tests/testament/tester - - tests/testament/tester --pedantic all + - nim c --taintMode:on -d:nimCoroutines tests/testament/tester + - tests/testament/tester --pedantic all -d:nimCoroutines - ./koch csource - ./koch xz diff --git a/appveyor.yml b/appveyor.yml index ea98b8507..dff7e91eb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -52,8 +52,8 @@ install: build_script: - bin\nim c koch - - koch boot - - koch boot -d:release + - koch boot -d:nimCoroutines + - koch boot -d:release -d:nimCoroutines - koch nimble - nim e tests/test_nimscript.nims - nimble install zip -y @@ -61,10 +61,10 @@ build_script: - nimble install sdl1 - nimble install jester@#head - nimble install niminst - - nim c --taintMode:on tests/testament/tester + - nim c --taintMode:on -d:nimCoroutines tests/testament/tester test_script: - - tests\testament\tester --pedantic all + - tests\testament\tester --pedantic all -d:nimCoroutines - koch csource - koch zip |