Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
3.9 KiB
99 lines
3.9 KiB
version: '{branch}-{build}' |
|
|
|
# Do not build on tags (GitHub only) |
|
skip_tags: true |
|
|
|
image: Visual Studio 2022 |
|
|
|
branches: |
|
except: # blacklist |
|
- coverity_scan |
|
|
|
environment: |
|
REPO_DIR: &REPO_DIR c:\qbittorrent |
|
CACHE_DIR: &CACHE_DIR c:\qbt_cache |
|
|
|
QBT_VER_URL: https://builds.shiki.hu/appveyor/version_64 |
|
QBT_LIB_URL: https://builds.shiki.hu/appveyor/qbt_libraries_64.7z |
|
|
|
# project directory |
|
clone_folder: *REPO_DIR |
|
|
|
# cache size should < 100MB (after compressing with fastest option): |
|
# see: https://www.appveyor.com/docs/build-cache#save-update-cache-before-build-finishes |
|
cache: |
|
- *CACHE_DIR |
|
|
|
clone_depth: 50 |
|
|
|
install: |
|
# check if library needs update |
|
- appveyor DownloadFile "%QBT_VER_URL%" -FileName "c:\version_new" && SET /P newVersion=<"c:\version_new" |
|
- IF EXIST "%CACHE_DIR%\version" (SET /P oldVersion=<"%CACHE_DIR%\version") |
|
- IF NOT EXIST "%CACHE_DIR%\version" (SET updateCache=1) |
|
- IF NOT "%oldVersion%" == "%newVersion%" (SET updateCache=1) |
|
# update library |
|
- IF "%updateCache%" == "1" (ECHO "--- Will redownload libraries ---" && |
|
RMDIR /S /Q "%CACHE_DIR%" & MKDIR "%CACHE_DIR%" && |
|
appveyor DownloadFile "%QBT_LIB_URL%" -FileName "c:\qbt_lib.7z" && 7z x "c:\qbt_lib.7z" -o"%CACHE_DIR%" > nul && |
|
COPY "c:\version_new" "%CACHE_DIR%\version") |
|
# Qt stay compressed in cache |
|
- 7z x "%CACHE_DIR%\qt5_64.7z" -o"c:\qbt" > nul |
|
|
|
before_build: |
|
# setup env |
|
- CALL "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 |
|
- SET PATH=%PATH%;C:\Qt\5.15.2\msvc2019_64\bin;%CACHE_DIR%\jom |
|
# setup project |
|
- COPY /Y "%CACHE_DIR%\conf.pri" "%REPO_DIR%" |
|
# workarounds |
|
- MKLINK /J "c:\qbt\base" "%CACHE_DIR%\base" |
|
|
|
build_script: |
|
- cd "%REPO_DIR%" |
|
# lupdate chokes when it parses headers from system inludes, especially Boost |
|
# it also chokes with the sources from src/app/qtlocalpeer (formerly qtsingleapplication) |
|
# Workaround: temporarily rename them to run lupdate with the .pro file |
|
- RENAME conf.pri conf.pri.temp |
|
- RENAME src\app\qtlocalpeer qtlocalpeer.temp |
|
- lupdate qbittorrent.pro |
|
- RENAME conf.pri.temp conf.pri |
|
- RENAME src\app\qtlocalpeer.temp qtlocalpeer |
|
- qmake qbittorrent.pro && cd src && qmake src.pro |
|
- jom -j2 -f Makefile.Release |
|
|
|
after_build: |
|
- cd "%REPO_DIR%" |
|
- MKDIR upload |
|
- COPY dist\windows\qt.conf upload |
|
- COPY src\release\qbittorrent.exe upload |
|
- COPY src\release\qbittorrent.pdb upload |
|
- COPY "%CACHE_DIR%\base\bin\libcrypto-1_1-x64.dll" upload |
|
- COPY "%CACHE_DIR%\base\bin\libssl-1_1-x64.dll" upload |
|
- COPY "%CACHE_DIR%\base\lib\torrent-rasterbar.dll" upload |
|
- COPY "%CACHE_DIR%\base\lib\zlib1.dll" upload |
|
- COPY C:\Qt\5.15.2\msvc2019_64\bin\Qt5Core.dll upload |
|
- COPY C:\Qt\5.15.2\msvc2019_64\bin\Qt5Gui.dll upload |
|
- COPY C:\Qt\5.15.2\msvc2019_64\bin\Qt5Network.dll upload |
|
- COPY C:\Qt\5.15.2\msvc2019_64\bin\Qt5Sql.dll upload |
|
- COPY C:\Qt\5.15.2\msvc2019_64\bin\Qt5Svg.dll upload |
|
- COPY C:\Qt\5.15.2\msvc2019_64\bin\Qt5Widgets.dll upload |
|
- COPY C:\Qt\5.15.2\msvc2019_64\bin\Qt5WinExtras.dll upload |
|
- COPY C:\Qt\5.15.2\msvc2019_64\bin\Qt5Xml.dll upload |
|
- MKDIR upload\plugins\iconengines |
|
- COPY C:\Qt\5.15.2\msvc2019_64\plugins\iconengines\qsvgicon.dll upload\plugins\iconengines |
|
- MKDIR upload\plugins\imageformats |
|
- COPY C:\Qt\5.15.2\msvc2019_64\plugins\imageformats\qico.dll upload\plugins\imageformats |
|
- COPY C:\Qt\5.15.2\msvc2019_64\plugins\imageformats\qsvg.dll upload\plugins\imageformats |
|
- MKDIR upload\plugins\platforms |
|
- COPY C:\Qt\5.15.2\msvc2019_64\plugins\platforms\qwindows.dll upload\plugins\platforms |
|
- MKDIR upload\plugins\sqldrivers |
|
- COPY C:\Qt\5.15.2\msvc2019_64\plugins\sqldrivers\qsqlite.dll upload\plugins\sqldrivers |
|
- MKDIR upload\plugins\styles |
|
- COPY C:\Qt\5.15.2\msvc2019_64\plugins\styles\qwindowsvistastyle.dll upload\plugins\styles |
|
|
|
test: off |
|
|
|
artifacts: |
|
- path: upload |
|
name: qBittorrent-Appveyor_Windows-x64
|
|
|