From 84a1a1ba386789ff2834e751fa80582fad70e9d6 Mon Sep 17 00:00:00 2001 From: Chen Gong Date: Thu, 23 May 2019 01:42:13 +0800 Subject: [PATCH] fix(ci): update build script --- appveyor.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 1bfef81e2..559897edf 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,9 +13,9 @@ environment: cache: - thirdparty.cached -> appveyor.install.bat - thirdparty\bin -> appveyor.install.bat - - thirdparty\data -> appveyor.install.bat - thirdparty\include -> appveyor.install.bat - thirdparty\lib -> appveyor.install.bat + - thirdparty\share -> appveyor.install.bat - C:\Libraries\libboost -> appveyor.install.bat init: @@ -30,11 +30,11 @@ build_script: - .\build.bat test after_build: - - 7z a rime.zip build\bin build\lib build\include thirdparty\data\opencc - - dir build /s + - 7z a rime.zip dist thirdparty\bin thirdparty\share + - dir dist /s before_test: - - copy /y build\lib\Release\rime.dll build\test\Release + - copy /y dist\lib\rime.dll build\test test_script: - cd build\test @@ -42,4 +42,4 @@ test_script: artifacts: - path: rime.zip - name: Binaries, includes and OpenCC data + name: Distributables, including binaries and OpenCC data