2016-11-30 20:54:06 +00:00
|
|
|
version: OpenLP-win-ci-b{build}
|
2016-11-29 13:07:21 +00:00
|
|
|
|
2019-02-14 21:19:26 +00:00
|
|
|
image:
|
|
|
|
- Visual Studio 2017
|
|
|
|
|
2016-11-29 13:07:21 +00:00
|
|
|
clone_script:
|
2018-07-16 20:01:47 +00:00
|
|
|
- curl -L https://bazaar.launchpad.net/BRANCHPATH/tarball -o sourcecode.tar.gz
|
|
|
|
- 7z e sourcecode.tar.gz
|
|
|
|
- 7z x sourcecode.tar
|
|
|
|
- mv BRANCHPATH openlp-branch
|
2016-11-29 13:07:21 +00:00
|
|
|
|
|
|
|
environment:
|
2019-02-19 20:46:31 +00:00
|
|
|
matrix:
|
|
|
|
- PYTHON: C:\\Python37-x64
|
|
|
|
- PYTHON: C:\\Python37
|
2016-11-29 13:07:21 +00:00
|
|
|
|
|
|
|
install:
|
|
|
|
# Install dependencies from pypi
|
2019-05-01 08:43:36 +00:00
|
|
|
- "%PYTHON%\\python.exe -m pip install sqlalchemy alembic appdirs chardet beautifulsoup4 lxml Mako mysql-connector-python pytest mock pyodbc psycopg2 pypiwin32 websockets asyncio waitress six webob requests QtAwesome PyQt5 PyQtWebEngine pymediainfo PyMuPDF"
|
2016-11-29 13:07:21 +00:00
|
|
|
|
|
|
|
build: off
|
|
|
|
|
|
|
|
test_script:
|
2016-11-30 20:54:06 +00:00
|
|
|
- cd openlp-branch
|
2016-12-15 19:26:18 +00:00
|
|
|
# Run the tests
|
2019-02-14 21:19:26 +00:00
|
|
|
- "%PYTHON%\\python.exe -m pytest -v tests"
|
2016-11-30 20:54:06 +00:00
|
|
|
# Go back to the user root folder
|
|
|
|
- cd..
|
2016-11-29 13:07:21 +00:00
|
|
|
|
|
|
|
after_test:
|
|
|
|
# This is where we create a package using PyInstaller
|
2018-10-25 19:02:49 +00:00
|
|
|
# Install PyInstaller
|
|
|
|
- "%PYTHON%\\python.exe -m pip install pyinstaller"
|
2016-11-30 20:54:06 +00:00
|
|
|
# Download and install Inno Setup - used for packaging
|
2017-03-22 21:35:55 +00:00
|
|
|
- appveyor DownloadFile http://www.jrsoftware.org/download.php/is-unicode.exe
|
2016-11-30 20:54:06 +00:00
|
|
|
- is-unicode.exe /VERYSILENT /SUPPRESSMSGBOXES /SP-
|
|
|
|
# Download and unpack portable-bundle
|
2017-03-22 21:35:55 +00:00
|
|
|
- appveyor DownloadFile https://get.openlp.org/win-sdk/portable-setup.7z
|
2016-11-30 20:54:06 +00:00
|
|
|
- 7z x portable-setup.7z
|
|
|
|
# Disabled portable installers - can't figure out how to make them silent
|
|
|
|
# - curl -L -O http://downloads.sourceforge.net/project/portableapps/PortableApps.com%20Installer/PortableApps.comInstaller_3.4.4.paf.exe
|
|
|
|
# - PortableApps.comInstaller_3.4.4.paf.exe /S
|
|
|
|
# - curl -L -O http://downloads.sourceforge.net/project/portableapps/PortableApps.com%20Launcher/PortableApps.comLauncher_2.2.1.paf.exe
|
|
|
|
# - PortableApps.comLauncher_2.2.1.paf.exe /S
|
|
|
|
# - curl -L -O http://downloads.sourceforge.net/project/portableapps/NSIS%20Portable/NSISPortable_3.0_English.paf.exe
|
|
|
|
# - NSISPortable_3.0_English.paf.exe /S
|
|
|
|
# Get the packaging code
|
2019-03-04 20:32:05 +00:00
|
|
|
- appveyor DownloadFile http://bazaar.launchpad.net/~openlp-core/openlp/packaging/tarball -FileName packaging.tar.gz
|
2016-12-15 16:33:03 +00:00
|
|
|
- 7z e packaging.tar.gz
|
|
|
|
- 7z x packaging.tar
|
2019-03-04 20:32:05 +00:00
|
|
|
- mv ~openlp-core/openlp/packaging packaging
|
2016-12-09 21:22:47 +00:00
|
|
|
# If this is trunk we should also build the manual
|
2016-12-15 16:33:03 +00:00
|
|
|
- ps: >-
|
|
|
|
If (BUILD_DOCS) {
|
|
|
|
&"$env:PYTHON\python.exe" -m pip install sphinx
|
|
|
|
Invoke-WebRequest -Uri "http://bazaar.launchpad.net/~openlp-core/openlp/documentation/tarball" -OutFile documentation.tar.gz
|
|
|
|
7z e documentation.tar.gz
|
|
|
|
7z x documentation.tar
|
|
|
|
mv ~openlp-core/openlp/documentation documentation
|
|
|
|
cd packaging
|
2018-07-14 19:56:11 +00:00
|
|
|
&"$env:PYTHON\python.exe" builders/windows-builder.py --skip-update -c windows/config-appveyor.ini -b ../openlp-branch -d ../documentation --portable --tag-override TAG
|
2016-12-15 16:33:03 +00:00
|
|
|
} else {
|
|
|
|
cd packaging
|
2019-02-17 20:23:47 +00:00
|
|
|
&"$env:PYTHON\python.exe" builders/windows-builder.py --skip-update --skip-translations -c windows/config-appveyor.ini -b ../openlp-branch --portable --tag-override TAG
|
2016-12-15 16:33:03 +00:00
|
|
|
}
|
2016-11-30 20:54:06 +00:00
|
|
|
|
|
|
|
artifacts:
|
|
|
|
- path: openlp-branch\dist\*.exe
|