diff options
| author | Jeremy Meng <jeremy.ymeng@gmail.com> | 2018-01-20 21:56:26 -0800 |
|---|---|---|
| committer | Jeremy Meng <jeremy.ymeng@gmail.com> | 2018-01-22 18:14:02 -0800 |
| commit | b23abfbf7ec1549c242b631722539c17595922ac (patch) | |
| tree | a412866992f04101050e68dd6ebe24e3521f548f /appveyor.yml | |
| parent | 9241a79bbf159ba0b079ebdbfa8ad1b3e69cf8c0 (diff) | |
Add appveyor support
Diffstat (limited to 'appveyor.yml')
| -rw-r--r-- | appveyor.yml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..a049989 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,26 @@ +version: 1.0.{build} + +environment: + matrix: + - COMPILER: msys2 + PLATFORM: x64 + MSYS2_ARCH: x86_64 + MSYS2_DIR: msys64 + MSYSTEM: MINGW64 + BIT: 64 + +install: + # running under CI + - '%APPVEYOR_BUILD_FOLDER%\ci\appveyor\install.bat' + - 'echo End intall at: & time /t' + +build_script: + - 'pushd %APPVEYOR_BUILD_FOLDER%' + - 'make -f %APPVEYOR_BUILD_FOLDER%\Makefile' + +after_build: + - '%APPVEYOR_BUILD_FOLDER%\ci\appveyor\pack.bat' + +artifacts: + - path: '*.zip' + - path: '*.tar' |
