openlp/scripts/appveyor.yml

73 lines
3.0 KiB
YAML
Raw Normal View History

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:
2019-09-20 22:47:38 +00:00
- curl -L https://gitlab.com/openlp/openlp/-/archive/BRANCHPATH/openlp-BRANCHPATH.tar.gz -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:
matrix:
- PYTHON: C:\\Python37-x64
CHOCO_VLC: vlc
- PYTHON: C:\\Python37
CHOCO_VLC: vlc --forcex86
2016-11-29 13:07:21 +00:00
install:
# Install dependencies from pypi
- "%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 QDarkStyle python-vlc Pyro4 zeroconf"
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-05-23 20:29:04 +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
# 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
# Download and unpack portable-bundle
- appveyor DownloadFile https://get.openlp.org/win-sdk/portable-setup.7z
- 7z x portable-setup.7z
# Install VLC
- choco install %CHOCO_VLC%
2016-11-30 20:54:06 +00:00
# Get the packaging code
2019-09-20 22:47:38 +00:00
- appveyor DownloadFile https://gitlab.com/openlp/packaging/-/archive/master/packaging-master.tar.gz -FileName packaging.tar.gz
- 7z e packaging.tar.gz
- 7z x packaging.tar
- mv ~openlp-core/openlp/packaging packaging
2016-12-09 21:22:47 +00:00
# If this is trunk we should also build the manual
- ps: >-
If (BUILD_DOCS) {
&"$env:PYTHON\python.exe" -m pip install sphinx
2019-09-20 22:47:38 +00:00
Invoke-WebRequest -Uri "https://gitlab.com/openlp/documentation/-/archive/master/documentation-master.tar.gz" -OutFile documentation.tar.gz
7z e documentation.tar.gz
7z x documentation.tar
mv ~openlp-core/openlp/documentation documentation
cd packaging
&"$env:PYTHON\python.exe" builders/windows-builder.py --skip-update -c windows/config-appveyor.ini -b ../openlp-branch -d ../documentation --portable --tag-override TAG
} 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-11-30 20:54:06 +00:00
artifacts:
- path: openlp-branch\dist\*.exe
2019-05-02 18:59:09 +00:00
name: Portable-installer
- path: openlp-branch\dist\*.msi
name: Installer