-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # .travis.yml # .travis/linux..script.sh # .travis/linux.win32.script.sh # .travis/linux.win64.script.sh # .travis/osx..install.sh # .travis/osx..script.sh # data/locale/en.ts # data/locale/id.ts # include/Graph.h # include/VstSyncController.h # include/lmms_math.h # plugins/vst_base/RemoteVstPlugin.cpp # src/core/RemotePlugin.cpp # src/core/Song.cpp # src/core/Track.cpp # src/gui/SubWindow.cpp # src/gui/widgets/Graph.cpp
- Loading branch information
Showing
92 changed files
with
5,624 additions
and
3,584 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
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
314ef4af137903dfb13e8c3ef1e6ea56cfdb23808d52ec4f5f50e288c73610c5 pbuilder_0.229.1_all.deb | ||
fa82aa8ed3055c6f6330104deedf080b26778295e589426d4c4dd0f2c2a5defa debootstrap_1.0.95_all.deb |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/bin/sh | ||
sudo apt-get update -qq |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
sudo apt-get install -y \ | ||
debian-archive-keyring \ | ||
dpkg \ | ||
pbuilder | ||
|
||
# work around a pbuilder bug which breaks ccache | ||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=666525 | ||
cd /tmp | ||
wget http://archive.ubuntu.com/ubuntu/pool/main/p/pbuilder/pbuilder_0.229.1_all.deb | ||
wget http://archive.ubuntu.com/ubuntu/pool/main/d/debootstrap/debootstrap_1.0.95_all.deb | ||
sha256sum -c "$TRAVIS_BUILD_DIR/.travis/debian_pkgs.sha256" | ||
sudo dpkg -i pbuilder_0.229.1_all.deb debootstrap_1.0.95_all.deb | ||
cd "$OLDPWD" |
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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/sh | ||
set -e | ||
|
||
: "${TARGET_ARCH:=amd64}" | ||
|
||
BASETGZ="$HOME/pbuilder-bases/debian-sid-$TARGET_ARCH.tgz" | ||
MIRROR=http://cdn-fastly.deb.debian.org/debian | ||
KEYRING=/usr/share/keyrings/debian-archive-keyring.gpg | ||
|
||
if [ -z "$TRAVIS_TAG" ] | ||
then | ||
sudo \ | ||
sh -c "echo CCACHEDIR=$HOME/.ccache >> /etc/pbuilderrc" | ||
fi | ||
|
||
if [ "$CC" = clang ] | ||
then | ||
sudo sh -c "echo EXTRAPACKAGES=clang >> /etc/pbuilderrc" | ||
fi | ||
|
||
if [ ! -e "$BASETGZ.stamp" ] | ||
then | ||
mkdir -p "$HOME/pbuilder-bases" | ||
# debootstrap fails to resolve dependencies which are virtual packages | ||
# e.g. perl-openssl-abi-1.1 provided by perl-openssl-defaults, needed for building SWH | ||
# See also: https://bugs.launchpad.net/ubuntu/+source/debootstrap/+bug/86536 | ||
sudo pbuilder --create --basetgz "$BASETGZ" --mirror $MIRROR \ | ||
--distribution sid --architecture $TARGET_ARCH \ | ||
--debootstrapopts --variant=buildd \ | ||
--debootstrapopts --keyring=$KEYRING \ | ||
--debootstrapopts --include=perl,libxml2-utils,libxml-perl,liblist-moreutils-perl,perl-openssl-defaults | ||
touch "$BASETGZ.stamp" | ||
else | ||
sudo pbuilder --update --basetgz "$BASETGZ" | ||
fi | ||
|
||
DIR="$PWD" | ||
cd .. | ||
dpkg-source -b "$DIR" | ||
env -i CC="$CC" CXX="$CXX" sudo pbuilder --build --debbuildopts "--jobs=auto" \ | ||
--basetgz "$BASETGZ" ./*.dsc |
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,6 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
mkdir build | ||
cd build | ||
|
||
export CMAKE_OPTS="$CMAKE_FLAGS -DUSE_WERROR=ON" | ||
../cmake/build_win32.sh | ||
|
||
make -j4 | ||
make tests |
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,6 +1,11 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
mkdir build | ||
cd build | ||
|
||
export CMAKE_OPTS="$CMAKE_FLAGS -DUSE_WERROR=ON" | ||
../cmake/build_win64.sh | ||
|
||
make -j4 | ||
make tests |
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,10 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
|
||
mkdir build | ||
cd build | ||
|
||
# Workaround; No FindQt5.cmake module exists | ||
CMAKE_PREFIX_PATH="$(brew --prefix qt5)" | ||
export CMAKE_PREFIX_PATH | ||
|
||
# shellcheck disable=SC2086 | ||
cmake -DUSE_WERROR=OFF -DCMAKE_INSTALL_PREFIX=../target $CMAKE_FLAGS .. | ||
|
||
make -j4 | ||
make tests | ||
./tests/tests |
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
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
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
Oops, something went wrong.