diff options
author | Rokas Kupstys <rokups@zoho.com> | 2017-02-14 12:23:42 +0200 |
---|---|---|
committer | Rokas Kupstys <rokups@zoho.com> | 2017-02-20 17:24:19 +0200 |
commit | 93149677094ffbd2ec038f3d6ec5a9aa339c8ea6 (patch) | |
tree | 5d9a1aa107ff71858d09d58ce7cebd52a4197678 | |
parent | c3d1b732d63b0d5e03cf194cf2c7475d344c8bc6 (diff) | |
download | Nim-93149677094ffbd2ec038f3d6ec5a9aa339c8ea6.tar.gz |
For CI: -d:nimCoroutines
-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 |