-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from OpenShot/release-20200105
WIP: Release of libopenshot-audio 0.1.9 (SO 7)
- Loading branch information
Showing
1,132 changed files
with
150,336 additions
and
326,341 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
build/ | ||
build/* | ||
/build* | ||
.DS_Store | ||
.settings | ||
.idea/* | ||
.idea/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,40 @@ | ||
language: cpp | ||
dist: trusty | ||
|
||
before_install: | ||
- sudo add-apt-repository ppa:openshot.developers/libopenshot-daily -y | ||
- sudo apt-get update -qq | ||
- sudo apt-get install gcc-4.8 cmake libopenshot-audio-dev libunittest++-dev swig libasound2-dev libfreetype6-dev libxcursor-dev libxinerama-dev libxrandr-dev -y | ||
- sudo apt autoremove -y | ||
- pwd | ||
matrix: | ||
include: | ||
- os: linux | ||
dist: xenial | ||
name: "Ubuntu 16.04 Xenial" | ||
- os: linux | ||
dist: bionic | ||
name: "Ubuntu 18.04 Bionic" | ||
- os: osx | ||
name: "Apple macOS" | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- cmake | ||
- libasound2-dev | ||
- doxygen | ||
- graphviz | ||
|
||
homebrew: | ||
update: true | ||
packages: | ||
- gcc | ||
|
||
script: | ||
- mkdir -p build; cd build; | ||
- cmake -D"CMAKE_BUILD_TYPE:STRING=Debug" ../ | ||
- cmake -DCMAKE_INSTALL_PREFIX:PATH="$TRAVIS_OS_NAME-x64" -DCMAKE_BUILD_TYPE:STRING="Debug" -DCMAKE_CXX_FLAGS_DEBUG="-Wall -Wpedantic" ../ | ||
- make VERBOSE=1 | ||
- if [ $TRAVIS_OS_NAME = linux ]; then make doc; fi | ||
- make install | ||
|
||
notifications: | ||
email: true | ||
|
||
env: | ||
global: | ||
- TRAVIS_LIBOPENSHOT=TEST | ||
- LANG="en_US.UTF-8" | ||
- LANG="en_US.UTF-8" |
Oops, something went wrong.