diff options
| author | KOBAYASHI Shuji <[email protected]> | 2019-03-18 12:50:39 +0900 |
|---|---|---|
| committer | KOBAYASHI Shuji <[email protected]> | 2019-03-18 14:25:24 +0900 |
| commit | bc321ece4c1ee754034449342ac3bf10ecd307b6 (patch) | |
| tree | 8858f160de4aed2ba45fb9a5e459bf5953eccb64 /appveyor.yml | |
| parent | f8b17d1ec4bc5c47b1c5a492d9e26752543620fd (diff) | |
| download | mruby-bc321ece4c1ee754034449342ac3bf10ecd307b6.tar.gz mruby-bc321ece4c1ee754034449342ac3bf10ecd307b6.zip | |
Use Rake instead of MiniRake on AppVeyor
1. Reduce build time
Build time becomes less than half. In MiniRake, a way of using fiber may not be good.
2. Synchronize standard output
No synchronized:
mrbtest - Embeddable Ruby Test
...........................
Total: 1165
(snip)
Time: 1.19 seconds
bintest - Command Binary Test
.....................
Total: 21
(snip)
Time: 0.39 seconds
mrbtest - Embeddable Ruby Test
...........................
Total: 1165
(snip)
Skip: 23
Time: 1.15 seconds
(snip)
>>> Test cxx_abi <<<
>>> Bintest host <<<
>>> Test host <<<
>>> Test full-debug <<<
>>> Bintest cxx_abi <<<
Synchronized:
>>> Test full-debug <<<
mrbtest - Embeddable Ruby Test
...........................
Total: 1165
(snip)
Time: 1.25 seconds
>>> Test host <<<
mrbtest - Embeddable Ruby Test
...........................
Total: 1165
(snip)
Time: 1.16 seconds
>>> Bintest host <<<
bintest - Command Binary Test
.....................
Total: 21
(snip)
Time: 0.41 seconds
>>> Test cxx_abi <<<
mrbtest - Embeddable Ruby Test
(snip)
Diffstat (limited to 'appveyor.yml')
| -rw-r--r-- | appveyor.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 74cc6febb..a91834cef 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -39,4 +39,4 @@ install: build_script: - set YACC=.\win_flex_bison\win_bison.exe - set MRUBY_CONFIG=appveyor_config.rb - - ruby .\minirake test + - rake -E $stdout.sync=true test |
