[WIP] Build and publish a dev version of kiwix-desktop.

This commit is contained in:
Matthieu Gautier
2019-09-11 10:39:30 +02:00
committed by luddens
parent b68236526d
commit 8f19944ea1
5 changed files with 14 additions and 3 deletions

View File

@ -12,6 +12,13 @@ then
ci@download.kiwix.org:/data/download/nightly
fi
if [[ "$APPVEYOR_REPO_BRANCH" != "master" ]]
then
scp -vrp -i ${SSH_KEY} -o StrictHostKeyChecking=no \
${NIGHTLY_KIWIX_ARCHIVES_DIR} \
ci@download.kiwix.org:/data/tmp/ci/${APPVEYOR_REPO_BRANCH}
fi
if [[ "$APPVEYOR_REPO_TAG" = "true" ]]
then
RELEASE_ARCHIVES=$(find $RELEASE_KIWIX_ARCHIVES_DIR -type f)

View File

@ -2,8 +2,11 @@ REM ========================================================
REM Install kiwix-desktop
git clone https://github.com/kiwix/kiwix-desktop || exit /b 1
cd kiwix-desktop
git checkout fullscreen-menu-windows
echo "Getting fix_desktop"
curl -fsSL -O http://public.kymeria.fr/KIWIX/windows/fix_desktop_makefile.py_ || exit /b 1
echo "Running qmake"
C:\Qt\5.12\msvc2017_64\bin\qmake.exe "CONFIG+=static" || exit /b 1
C:\Qt\5.12\msvc2017_64\bin\qmake.exe "CONFIG+=static console" || exit /b 1
echo "Running fix_desktop"
C:\Python36\Python ..\appveyor\fix_desktop_makefile.py Makefile.Release || exit /b 1
echo "Running nmake"