From 05b766a46011d72f5ffd2ae59d0c368f13f50365 Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Fri, 9 Mar 2018 21:48:01 +0700 Subject: [PATCH] Extract Appveyor scripts into separate files (#57) --- .appveyor/after_build.cmd | 4 ++++ .appveyor/before_build.cmd | 2 ++ .appveyor/build.cmd | 4 ++++ .appveyor/install.cmd | 4 ++++ appveyor.yml | 32 ++++---------------------------- 5 files changed, 18 insertions(+), 28 deletions(-) create mode 100644 .appveyor/after_build.cmd create mode 100644 .appveyor/before_build.cmd create mode 100644 .appveyor/build.cmd create mode 100644 .appveyor/install.cmd diff --git a/.appveyor/after_build.cmd b/.appveyor/after_build.cmd new file mode 100644 index 000000000..824d24ca2 --- /dev/null +++ b/.appveyor/after_build.cmd @@ -0,0 +1,4 @@ +vcpkg install --triplet x64-windows openal-soft openssl opus zlib ffmpeg +appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip +mkdir %APPVEYOR_BUILD_FOLDER%\build +7z x ninja-win.zip -o%APPVEYOR_BUILD_FOLDER%\build > nul diff --git a/.appveyor/before_build.cmd b/.appveyor/before_build.cmd new file mode 100644 index 000000000..b940dc6da --- /dev/null +++ b/.appveyor/before_build.cmd @@ -0,0 +1,2 @@ +set PATH=C:\Python35;%QT_DIR%\bin;%PATH% +call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" diff --git a/.appveyor/build.cmd b/.appveyor/build.cmd new file mode 100644 index 000000000..bbdd76b23 --- /dev/null +++ b/.appveyor/build.cmd @@ -0,0 +1,4 @@ +pushd %APPVEYOR_BUILD_FOLDER%\build +cmake -GNinja -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. +cmake --build . --config RelWithDebInfo +popd \ No newline at end of file diff --git a/.appveyor/install.cmd b/.appveyor/install.cmd new file mode 100644 index 000000000..824d24ca2 --- /dev/null +++ b/.appveyor/install.cmd @@ -0,0 +1,4 @@ +vcpkg install --triplet x64-windows openal-soft openssl opus zlib ffmpeg +appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip +mkdir %APPVEYOR_BUILD_FOLDER%\build +7z x ninja-win.zip -o%APPVEYOR_BUILD_FOLDER%\build > nul diff --git a/appveyor.yml b/appveyor.yml index 2f3cd8384..7fbd8c37e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -26,40 +26,16 @@ environment: qt_dir: C:\Qt\5.9\msvc2017_64 install: - - cmd: >- - vcpkg install --triplet x64-windows openal-soft openssl opus zlib ffmpeg - - appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.8.2/ninja-win.zip - - mkdir %APPVEYOR_BUILD_FOLDER%\build - - 7z x ninja-win.zip -o%APPVEYOR_BUILD_FOLDER%\build > nul + - cmd: .appveyor\install.cmd before_build: - - cmd: >- - set PATH=C:\Python35;%QT_DIR%\bin;%PATH% - - call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat" - - cd %APPVEYOR_BUILD_FOLDER%\build + - cmd: .appveyor\before_build.cmd build_script: - - cmd: >- - cmake -GNinja -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. - - cmake --build . --config RelWithDebInfo + - cmd: .appveyor\build.cmd after_build: - - cmd: >- - for %%f in (Qt5Core,Qt5Gui,Qt5Network,Qt5Widgets) do xcopy %QT_DIR%\bin\%%f.dll Telegram /Q /Y /I - - xcopy %QT_DIR%\plugins\imageformats\qwebp.dll Telegram\imageformats\ /Q /Y /I - - xcopy %QT_DIR%\plugins\imageformats\qjpeg.dll Telegram\imageformats\ /Q /Y /I - - xcopy %QT_DIR%\plugins\platforms\qwindows.dll Telegram\platforms\ /Q /Y /I - - 7z a -mmt kepka.zip Telegram\Telegram.exe Telegram\Telegram.pdb Telegram\*.dll Telegram\platforms\* Telegram\imageformats\* + - ps: .appveyor\after_build.cmd artifacts: - path: build\kepka.zip