Skip to content

Commit

Permalink
Merge pull request #3263 from OpenShot/release-20200229
Browse files Browse the repository at this point in the history
Release branch for openshot-qt 2.5.1 (required libopenshot version 0.2.5)
  • Loading branch information
jonoomph authored Mar 3, 2020
2 parents fa699d7 + df8baf0 commit e67abe7
Show file tree
Hide file tree
Showing 122 changed files with 251,205 additions and 246,915 deletions.
2 changes: 2 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ linux-builder:
- export LD_LIBRARY_PATH=$CI_PROJECT_DIR/build/install-x64/lib:$LD_LIBRARY_PATH
- echo -e "CI_PROJECT_NAME:$CI_PROJECT_NAME\nCI_COMMIT_REF_NAME:$CI_COMMIT_REF_NAME\nCI_COMMIT_SHA:$CI_COMMIT_SHA\nCI_JOB_ID:$CI_JOB_ID" > "build/install-x64/share/$CI_PROJECT_NAME"
- git log $(git describe --tags --abbrev=0 @^)..@ --oneline --pretty=format:"%C(auto,yellow)%h%C(auto,magenta)% %C(auto,blue)%>(12,trunc)%ad %C(auto,green)%<(25,trunc)%aN%C(auto,reset)%s%C(auto,red)% gD% D" --date=short > "build/install-x64/share/$CI_PROJECT_NAME.log"
- cd doc; make html; cd ..;
- ~/auto-update-sphinx "$CI_PROJECT_DIR/build" "$CI_COMMIT_REF_NAME"
- python3 freeze.py build
- python3 installer/build-server.py "$SLACK_TOKEN" "$S3_ACCESS_KEY" "$S3_SECRET_KEY" "$WINDOWS_KEY" "$WINDOWS_PASSWORD" "$GITHUB_USER" "$GITHUB_PASS" "False" "$CI_COMMIT_REF_NAME"
when: always
Expand Down
55 changes: 41 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,46 @@
language: cpp
dist: xenial
sudo: required
# Run in default virtualenv, but with access to Python packages
# installed by apt
language: python
virtualenv:
system_site_packages: true
addons:
apt:
sources:
- sourceline: 'ppa:openshot.developers/libopenshot-daily'
packages:
- libopenshot-audio-dev
- libopenshot-dev
- libssl-dev
- python3-openshot
- python3-pip
- python3-setuptools
- python3-pyqt5
- python3-pyqt5.qtmultimedia
- python3-pyqt5.qtopengl
- python3-pyqt5.qtsvg
- python3-pyqt5.qtwebkit
- python3-requests
- python3-xdg
- python3-zmq
- qttranslations5-l10n
- xvfb

before_install:
- sudo add-apt-repository ppa:openshot.developers/libopenshot-daily -y
- sudo apt-get update -qq
- sudo apt-get install gcc-4.8 xvfb tar cmake libopenshot-dev libopenshot-audio-dev libunittest++-dev swig doxygen doxypy libssl-dev python3 python3-dev python3-pip python3-pyqt5 python3-setuptools python3-openshot python3-pyqt5 python3-pyqt5.qtmultimedia python3-pyqt5.qtopengl python3-pyqt5.qtsvg python3-pyqt5.qtwebkit python3-requests python3-xdg python3-zmq qttranslations5-l10n -y
- sudo apt autoremove -y
- wget https://files.pythonhosted.org/packages/d0/6d/9492644452727094543575de9846af5a2b9c764f760e2d414af7c876618c/cx_Freeze-5.0.1.tar.gz
- tar xf cx_Freeze-5.0.1.tar.gz
- cd cx_Freeze-5.0.1; python3 setup.py build; sudo python3 setup.py install; cd ..;
- pwd
matrix:
include:
- name: "Python 3.5 (Ubuntu 16.04 Xenial)"
os: linux
dist: xenial
python: 3.5
- name: "Python 3.6 (Ubuntu 18.04 Bionic)"
os: linux
dist: bionic
python: 3.6

install:
- pip3 install cx-freeze

script:
- python3 freeze.py build;
- python3 freeze.py build
- xvfb-run --auto-servernum --server-num=1 --server-args "-screen 0 1920x1080x24" python3 src/tests/query_tests.py

notifications:
Expand All @@ -22,4 +49,4 @@ notifications:
env:
global:
- TRAVIS_LIBOPENSHOT=TEST
- LANG="en_US.UTF-8"
- LANG="en_US.UTF-8"
Loading

0 comments on commit e67abe7

Please sign in to comment.