Skip to content

Commit

Permalink
x86 build testing
Browse files Browse the repository at this point in the history
  • Loading branch information
Pusnow committed Jun 30, 2017
1 parent d0adb71 commit 7f8fcbb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,20 @@ platform:

environment:
matrix:
- BUILD_TYPE: nmake
- BUILD_TYPE: x86
- BUILD_TYPE: x64

build_script:
- cd src
- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64
- nmake -f Makefile.x64.msvc.in
- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %BUILD_TYPE%
- nmake -f Makefile.%BUILD_TYPE%.msvc.in

after_build:
- cd %APPVEYOR_BUILD_FOLDER%\
- 7z a mecab-ko-msvc.zip %APPVEYOR_BUILD_FOLDER%\src\*.dll
- 7z a mecab-ko-msvc.zip %APPVEYOR_BUILD_FOLDER%\src\*.exe
- 7z a mecab-ko-msvc.zip %APPVEYOR_BUILD_FOLDER%\src\*.lib
- 7z a mecab-ko-msvc.zip %APPVEYOR_BUILD_FOLDER%\src\mecab.h
- 7z a mecab-ko-msvc-%BUILD_TYPE%.zip %APPVEYOR_BUILD_FOLDER%\src\*.dll
- 7z a mecab-ko-msvc-%BUILD_TYPE%.zip %APPVEYOR_BUILD_FOLDER%\src\*.exe
- 7z a mecab-ko-msvc-%BUILD_TYPE%.zip %APPVEYOR_BUILD_FOLDER%\src\*.lib
- 7z a mecab-ko-msvc-%BUILD_TYPE%.zip %APPVEYOR_BUILD_FOLDER%\src\mecab.h

artifacts:
- path: '*.zip'
Expand Down
File renamed without changes.

0 comments on commit 7f8fcbb

Please sign in to comment.