diff options
| author | KOBAYASHI Shuji <[email protected]> | 2020-05-20 13:25:28 +0900 |
|---|---|---|
| committer | KOBAYASHI Shuji <[email protected]> | 2020-05-20 13:32:23 +0900 |
| commit | 86223b6eca954f9c189b986a24d4ba0252af7b23 (patch) | |
| tree | e734c87b26cb3844a9dbd0aee3f8219a6944c4ad /appveyor.yml | |
| parent | d79147fe5dc4ee8b4eff6a37df229d993cf3ce58 (diff) | |
| download | mruby-86223b6eca954f9c189b986a24d4ba0252af7b23.tar.gz mruby-86223b6eca954f9c189b986a24d4ba0252af7b23.zip | |
Retry `rake -m` on AppVeyor [skip travis]
The following error occurs when using `rake -m` on AppVeyor:
```
fatal error C1041: cannot open program database 'C:\projects\mruby\vc140.pdb'; if multiple CL.EXE write to the same .PDB file, please use /FS
```
Therefore, the issue is solved by not creating the PDB file. It is expected
to be somewhat faster by not generating debugging information (I don't think
debugging information is necessary for normal CI).
Diffstat (limited to 'appveyor.yml')
| -rw-r--r-- | appveyor.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index bf4fb3f17..7a086c316 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -47,4 +47,5 @@ install: build_script: - set YACC=.\win_flex_bison\win_bison.exe - set MRUBY_CONFIG=appveyor_config.rb + - rake -m - rake -E $stdout.sync=true test |
