Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ If you don't already have it, first step is to download ffmpeg.

## Windows

View the [releases](https://github.com/cdgriffith/FastFlix/releases) for prebuilt Windows binaries. For legal reasons
the ffmpeg binary cannot bundled and must be [separately downloaded](https://ffmpeg.zeranoe.com/builds/).
View the [releases](https://github.com/cdgriffith/FastFlix/releases) for Windows binaries (Generated via Appveyor and also available there).

For legal reasons the ffmpeg binary cannot bundled and must be [separately downloaded](https://ffmpeg.zeranoe.com/builds/).

## Linux

Expand Down
19 changes: 16 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,29 @@
version: 1.0.0-{build}

image: Visual Studio 2017
image:
- Ubuntu1804
- Visual Studio 2017

platform: x64

branches:
only:
- master
- build

install:
- cmd: C:\Python36-x64\python -m pip install --upgrade pip setuptools --ignore-installed
- cmd: C:\Python36-x64\python -m pip install -r requirements.txt
- sh: sudo apt install python3-pip -y
- sh: sudo python3.6 -m pip install --upgrade pip setuptools --ignore-installed --no-cache-dir
- sh: sudo python3.6 -m pip install -r requirements.txt --no-cache-dir --progress-bar off


build_script:
- cmd: build.bat
- cmd: C:\Python36-x64\Scripts\pyinstaller --add-data "data\icon.ico;data" --paths "C:\Python36-x64\Lib\site-packages\shiboken2" --noconsole flix\gui.py --icon data\icon.ico --name FastFlix --clean --onefile
- sh: pyinstaller --add-data "data/icon.ico:data/" --noconsole flix/gui.py --icon data/icon.ico --name FastFlix --clean --onefile

test: off

artifacts:
- path: dist\*
- path: dist\*