mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Merge pull request #1284 from G10h4ck/improve_build
Improve build and Windows Continuos Integration
This commit is contained in:
commit
9090205747
155
appveyor.yml
155
appveyor.yml
@ -52,7 +52,7 @@ on_finish:
|
|||||||
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
#- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
||||||
|
|
||||||
# clone directory
|
# clone directory
|
||||||
clone_folder: c:\projects\RetroShare
|
clone_folder: C:\projects\RetroShare
|
||||||
|
|
||||||
# fetch repository as zip archive
|
# fetch repository as zip archive
|
||||||
#shallow_clone: true # default is "false"
|
#shallow_clone: true # default is "false"
|
||||||
@ -62,20 +62,18 @@ clone_depth: 1 # clone entire repository history if not de
|
|||||||
|
|
||||||
environment:
|
environment:
|
||||||
global:
|
global:
|
||||||
#Qt: https://www.appveyor.com/docs/installed-software#qt
|
## Qt: https://www.appveyor.com/docs/installed-software#qt
|
||||||
# (C:\Qt\5.10 mapped to C:\Qt\5.10.1 for backward compatibility)
|
# QTDIR: C:\Qt\5.10.1\mingw53_32
|
||||||
QTDIR: C:\Qt\5.10\mingw53_32
|
|
||||||
MSYS2_ARCH: i686
|
MSYS2_ARCH: i686
|
||||||
TARGET: i686_32-pc-msys
|
TARGET: i686_32-pc-msys
|
||||||
|
MINGW_PREFIX: C:\msys64\mingw32
|
||||||
|
RS_DEPLOY: RetroShare_deploy
|
||||||
|
|
||||||
|
|
||||||
# build cache to preserve files/folders between builds
|
# build cache to preserve files/folders between builds
|
||||||
cache:
|
#cache:
|
||||||
- c:\projects\libs
|
# Disabled because it's bigger then supported by appveyor free plan
|
||||||
# - packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
|
# - C:\msys64\var\cache\pacman\pkg
|
||||||
# - projectA\libs
|
|
||||||
# - node_modules # local npm modules
|
|
||||||
# - %APPDATA%\npm-cache # npm cache
|
|
||||||
|
|
||||||
# scripts that run after cloning repository
|
# scripts that run after cloning repository
|
||||||
#install:
|
#install:
|
||||||
@ -90,24 +88,12 @@ install:
|
|||||||
# Configuring MSys2
|
# Configuring MSys2
|
||||||
- set PATH=C:\msys64\usr\bin;%PATH%
|
- set PATH=C:\msys64\usr\bin;%PATH%
|
||||||
- set PATH=C:\msys64\mingw32\bin;%PATH%
|
- set PATH=C:\msys64\mingw32\bin;%PATH%
|
||||||
|
- pacman --noconfirm -S mingw-w64-i686-qt5 mingw-w64-i686-miniupnpc mingw-w64-i686-sqlcipher mingw-w64-i686-libmicrohttpd
|
||||||
|
#- pacman --noconfirm -S mingw-w64-i686-qt5-static mingw-w64-i686-miniupnpc mingw-w64-i686-sqlcipher mingw-w64-i686-libmicrohttpd
|
||||||
|
#- set PATH=C:\msys64\mingw32\qt5-static\bin\;%PATH%
|
||||||
|
|
||||||
# Configuring Qt
|
# Configuring Qt
|
||||||
- set PATH=%QTDIR%\bin;C:\Qt\Tools\mingw491_32\bin;%PATH%
|
# - set PATH=%QTDIR%\bin;C:\Qt\Tools\mingw491_32\bin;%PATH%
|
||||||
# Install all default programms
|
|
||||||
#- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy base-devel git mercurial cvs wget p7zip gcc perl ruby python2" #Already installed
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -Sy openssl-devel"
|
|
||||||
# Install toolchain
|
|
||||||
#- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-toolchain mingw-w64-x86_64-toolchain" #Already installed
|
|
||||||
# Install other binutils
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-curl mingw-w64-x86_64-curl"
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-miniupnpc mingw-w64-x86_64-miniupnpc"
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-sqlite3 mingw-w64-x86_64-sqlite3"
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-speex mingw-w64-x86_64-speex"
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-speexdsp mingw-w64-x86_64-speexdsp"
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-opencv mingw-w64-x86_64-opencv"
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-ffmpeg mingw-w64-x86_64-ffmpeg"
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-libmicrohttpd mingw-w64-x86_64-libmicrohttpd"
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-libxslt mingw-w64-x86_64-libxslt"
|
|
||||||
- C:\msys64\usr\bin\bash -lc "pacman --noconfirm -S mingw-w64-i686-rapidjson mingw-w64-x86_64-rapidjson"
|
|
||||||
|
|
||||||
# Hack for new MSys2
|
# Hack for new MSys2
|
||||||
- copy C:\msys64\mingw32\i686-w64-mingw32\bin\ar.exe C:\msys64\mingw32\bin\i686-w64-mingw32-ar.exe
|
- copy C:\msys64\mingw32\i686-w64-mingw32\bin\ar.exe C:\msys64\mingw32\bin\i686-w64-mingw32-ar.exe
|
||||||
@ -116,10 +102,6 @@ install:
|
|||||||
- copy C:\msys64\mingw64\x86_64-w64-mingw32\bin\ar.exe C:\msys64\mingw64\bin\x86_64-w64-mingw32-ar.exe
|
- copy C:\msys64\mingw64\x86_64-w64-mingw32\bin\ar.exe C:\msys64\mingw64\bin\x86_64-w64-mingw32-ar.exe
|
||||||
- copy C:\msys64\mingw64\x86_64-w64-mingw32\bin\ranlib.exe C:\msys64\mingw64\bin\x86_64-w64-mingw32-ranlib.exe
|
- copy C:\msys64\mingw64\x86_64-w64-mingw32\bin\ranlib.exe C:\msys64\mingw64\bin\x86_64-w64-mingw32-ranlib.exe
|
||||||
- copy C:\msys64\mingw64\bin\windres.exe C:\msys64\mingw64\bin\x86_64-w64-mingw32-windres.exe
|
- copy C:\msys64\mingw64\bin\windres.exe C:\msys64\mingw64\bin\x86_64-w64-mingw32-windres.exe
|
||||||
# Build missing Libs
|
|
||||||
#- C:\msys64\mingw32.exe -lc "cd /c/projects/RetroShare/msys2_build_libs/ && make"
|
|
||||||
# Clone RetroShare
|
|
||||||
#- git clone -q --branch={branch} https://github.com/RetroShare/RetroShare.git C:\projects\RetroShare
|
|
||||||
|
|
||||||
|
|
||||||
#---------------------------------#
|
#---------------------------------#
|
||||||
@ -144,18 +126,112 @@ configuration: Release
|
|||||||
|
|
||||||
# scripts to run before build
|
# scripts to run before build
|
||||||
before_build:
|
before_build:
|
||||||
|
- cd C:\projects\RetroShare
|
||||||
|
# - find C:\ > filelist.txt
|
||||||
|
|
||||||
# scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services)
|
# scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services)
|
||||||
before_package:
|
before_package:
|
||||||
|
|
||||||
# scripts to run after build
|
|
||||||
after_build:
|
|
||||||
|
|
||||||
# to run your custom scripts instead of automatic MSBuild
|
# to run your custom scripts instead of automatic MSBuild
|
||||||
build_script:
|
build_script:
|
||||||
- cd C:\projects\RetroShare
|
- qmake -Wall -spec win32-g++ "CONFIG=debug"
|
||||||
- qmake CONFIG+=no_sqlcipher
|
- mingw32-make -j3
|
||||||
- make
|
|
||||||
|
# scripts to run after build
|
||||||
|
after_build:
|
||||||
|
- mkdir %RS_DEPLOY%
|
||||||
|
- copy retroshare-nogui\src\retroshare-nogui.exe %RS_DEPLOY%\
|
||||||
|
- copy retroshare-gui\src\retroshare.exe %RS_DEPLOY%\
|
||||||
|
|
||||||
|
## In Debug build winedeplyqt forget the non debug Qt libs
|
||||||
|
- copy C:\msys64\mingw32\bin\Qt5Svg.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\Qt5Core.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\Qt5Multimedia.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\Qt5Widgets.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\Qt5Xml.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\Qt5PrintSupport.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\Qt5Gui.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\Qt5Network.dll %RS_DEPLOY%\
|
||||||
|
|
||||||
|
- mkdir %RS_DEPLOY%\playlistformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\playlistformats\qtmultimedia_m3u.dll %RS_DEPLOY%\playlistformats
|
||||||
|
|
||||||
|
- mkdir %RS_DEPLOY%\printsupport\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\printsupport\windowsprintersupport.dll %RS_DEPLOY%\printsupport\
|
||||||
|
|
||||||
|
- mkdir %RS_DEPLOY%\iconengines\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\iconengines\qsvgicon.dll %RS_DEPLOY%\iconengines\
|
||||||
|
|
||||||
|
- mkdir %RS_DEPLOY%\bearer\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\bearer\qgenericbearer.dll %RS_DEPLOY%\bearer\
|
||||||
|
|
||||||
|
- mkdir %RS_DEPLOY%\mediaservice\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\mediaservice\qtmedia_audioengine.dll %RS_DEPLOY%\mediaservice\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\mediaservice\dsengine.dll %RS_DEPLOY%\mediaservice\
|
||||||
|
|
||||||
|
- mkdir %RS_DEPLOY%\styles\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\styles\qwindowsvistastyle.dll %RS_DEPLOY%\styles\
|
||||||
|
|
||||||
|
- mkdir %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qwebp.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qicns.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qjpeg.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qtiff.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qtga.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qjp2.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qico.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qwbmp.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qicns.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qgif.dll %RS_DEPLOY%\imageformats\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\imageformats\qsvg.dll %RS_DEPLOY%\imageformats\
|
||||||
|
|
||||||
|
- mkdir %RS_DEPLOY%\platforms\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\platforms\qwindows.dll %RS_DEPLOY%\platforms\
|
||||||
|
|
||||||
|
- mkdir %RS_DEPLOY%\audio\
|
||||||
|
- copy C:\msys64\mingw32\share\qt5\plugins\audio\qtaudio_windows.dll %RS_DEPLOY%\audio\
|
||||||
|
|
||||||
|
- windeployqt %RS_DEPLOY%\retroshare.exe
|
||||||
|
|
||||||
|
- copy C:\msys64\mingw32\bin\libbz2*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libeay32.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libminiupnpc.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libsqlcipher*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libsqlite3*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\ssleay32.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\zlib*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libgcc_s_dw2*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libstdc*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libwinpthread*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libicu*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libpcre*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libharfbuzz*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libpng*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libfreetype*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libglib*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libgraphite2.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libintl*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libiconv*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libjasper*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libjpeg*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libtiff*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libwebp*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libwebpdemux*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\liblzma*.dll %RS_DEPLOY%\
|
||||||
|
|
||||||
|
## Needed for libresapi http
|
||||||
|
- copy C:\msys64\mingw32\bin\libmicrohttpd*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libgnutls*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libgmp*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libhogweed*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libidn2*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libnettle*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libp11-kit*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libtasn1*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libunistring*.dll %RS_DEPLOY%\
|
||||||
|
- copy C:\msys64\mingw32\bin\libffi*.dll %RS_DEPLOY%\
|
||||||
|
|
||||||
|
- find C:\projects\RetroShare >> filelist.txt
|
||||||
|
|
||||||
# to disable automatic builds
|
# to disable automatic builds
|
||||||
#build: off
|
#build: off
|
||||||
@ -164,7 +240,10 @@ build_script:
|
|||||||
# artifacts configuration #
|
# artifacts configuration #
|
||||||
#---------------------------------#
|
#---------------------------------#
|
||||||
|
|
||||||
#artifacts:
|
artifacts:
|
||||||
|
- path: $(RS_DEPLOY)
|
||||||
|
- path: '**\*.exe'
|
||||||
|
- path: filelist.txt
|
||||||
#
|
#
|
||||||
# # pushing a single file
|
# # pushing a single file
|
||||||
# - path: test.zip
|
# - path: test.zip
|
||||||
|
@ -267,8 +267,6 @@ win32-g++ {
|
|||||||
|
|
||||||
DEFINES += USE_CMD_ARGS
|
DEFINES += USE_CMD_ARGS
|
||||||
|
|
||||||
CONFIG += upnp_miniupnpc
|
|
||||||
|
|
||||||
wLibs = ws2_32 gdi32 uuid iphlpapi crypt32 ole32 winmm
|
wLibs = ws2_32 gdi32 uuid iphlpapi crypt32 ole32 winmm
|
||||||
LIBS += $$linkDynamicLibs(wLibs)
|
LIBS += $$linkDynamicLibs(wLibs)
|
||||||
}
|
}
|
||||||
@ -279,22 +277,10 @@ mac {
|
|||||||
QMAKE_CC = $${QMAKE_CXX}
|
QMAKE_CC = $${QMAKE_CXX}
|
||||||
OBJECTS_DIR = temp/obj
|
OBJECTS_DIR = temp/obj
|
||||||
MOC_DIR = temp/moc
|
MOC_DIR = temp/moc
|
||||||
#DEFINES = WINDOWS_SYS WIN32 STATICLIB MINGW
|
|
||||||
#DEFINES *= MINIUPNPC_VERSION=13
|
|
||||||
|
|
||||||
CONFIG += upnp_miniupnpc
|
|
||||||
CONFIG += c++11
|
|
||||||
|
|
||||||
# zeroconf disabled at the end of libretroshare.pro (but need the code)
|
|
||||||
#CONFIG += zeroconf
|
|
||||||
#CONFIG += zcnatassist
|
|
||||||
|
|
||||||
# Beautiful Hack to fix 64bit file access.
|
# Beautiful Hack to fix 64bit file access.
|
||||||
QMAKE_CXXFLAGS *= -Dfseeko64=fseeko -Dftello64=ftello -Dfopen64=fopen -Dvstatfs64=vstatfs
|
QMAKE_CXXFLAGS *= -Dfseeko64=fseeko -Dftello64=ftello -Dfopen64=fopen -Dvstatfs64=vstatfs
|
||||||
|
|
||||||
#GPG_ERROR_DIR = ../../../../libgpg-error-1.7
|
|
||||||
#GPGME_DIR = ../../../../gpgme-1.1.8
|
|
||||||
|
|
||||||
for(lib, LIB_DIR):LIBS += -L"$$lib"
|
for(lib, LIB_DIR):LIBS += -L"$$lib"
|
||||||
for(bin, BIN_DIR):LIBS += -L"$$bin"
|
for(bin, BIN_DIR):LIBS += -L"$$bin"
|
||||||
|
|
||||||
|
@ -34,8 +34,8 @@
|
|||||||
#include <retroshare/rsnotify.h>
|
#include <retroshare/rsnotify.h>
|
||||||
#include <retroshare/rspeers.h>
|
#include <retroshare/rspeers.h>
|
||||||
|
|
||||||
#if defined(Q_OS_WIN)
|
#ifdef Q_OS_WIN
|
||||||
#include <util/retroshareWin32.h>
|
# include <util/retroshareWin32.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Retroshare's Settings */
|
/* Retroshare's Settings */
|
||||||
|
@ -400,13 +400,11 @@ win32-g++ {
|
|||||||
PREFIX_MSYS2=$${TEMPTATIVE_MSYS2}
|
PREFIX_MSYS2=$${TEMPTATIVE_MSYS2}
|
||||||
}
|
}
|
||||||
|
|
||||||
!isEmpty(PREFIX_MSYS2) {
|
!isEmpty(PREFIX_MSYS2):message(Found MSYS2: $${PREFIX_MSYS2})
|
||||||
message(Found MSYS2: $${PREFIX_MSYS2})
|
}
|
||||||
|
|
||||||
isEmpty(PREFIX) {
|
isEmpty(PREFIX):!isEmpty(PREFIX_MSYS2) {
|
||||||
PREFIX = $$system_path($${PREFIX_MSYS2})
|
PREFIX = $$system_path($${PREFIX_MSYS2})
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
isEmpty(PREFIX) {
|
isEmpty(PREFIX) {
|
||||||
|
Loading…
Reference in New Issue
Block a user