diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-12 23:52:05 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-13 00:17:06 +0300 |
commit | cc4d69e70524ee74e1c74370087820fc1f350db8 (patch) | |
tree | 108c47737dfc49e689ceb7294a2bf0634e953540 | |
parent | cmake: install README, LICENSE.txt (diff) | |
download | math-server-cc4d69e70524ee74e1c74370087820fc1f350db8.tar.gz math-server-cc4d69e70524ee74e1c74370087820fc1f350db8.zip |
AppVeyor: package artifacts
Diffstat (limited to '')
-rw-r--r-- | appveyor.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index f731b1c..71b270e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ image: environment: python_exe: C:\Python36-x64\python.exe - install_dir: C:\Projects\install + install_dir: C:\Projects\install\math-server platform: - Win32 @@ -22,6 +22,10 @@ install: build_script: - '"%python_exe%" cmake\build\build_appveyor.py --install "%install_dir%" --boost "%appveyor_boost_root%" --boost-librarydir "%appveyor_boost_librarydir%" -- -DENABLE_TESTS=ON' +after_build: + - 7z.exe a "math-server-%PLATFORM%-%CONFIGURATION%.zip" "%install_dir%" + - appveyor.exe PushArtifact "math-server-%PLATFORM%-%CONFIGURATION%.zip" + test_script: - '"%install_dir%\bin\test\unit_tests.exe"' |