This repository has been archived by the owner on Jun 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:cppit/jucipp into python-refactor
- Loading branch information
Showing
32 changed files
with
672 additions
and
409 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,21 +1,27 @@ | ||
sudo: required | ||
|
||
# osx_image: xcode7.3 | ||
|
||
env: | ||
- distribution: ubuntu | ||
- distribution: fedora | ||
- distribution: arch | ||
- distribution: debian-testing | ||
- distribution: debian | ||
|
||
#matrix: | ||
# include: | ||
# - os: osx | ||
|
||
services: | ||
- docker | ||
|
||
before_install: | ||
- ./ci/update_travis.sh | ||
- ./ci/update_ci.sh #travis_wait 90 ./ci/update_ci.sh | ||
|
||
script: | ||
- script=compile CXX=clang++ CC=clang ./ci/execute.sh | ||
- script=clean ./ci/execute.sh | ||
- script=compile ./ci/execute.sh | ||
- script=compile CXX=g++ CC=gcc ./ci/execute.sh | ||
- script=static_analysis ./ci/execute.sh | ||
- script=compile make_command="broadwayd & make test" ./ci/execute.sh | ||
- script=compile make_command="broadwayd & CTEST_OUTPUT_ON_FAILURE=1 make test" ./ci/execute.sh |
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,15 @@ | ||
platform: | ||
- x64 | ||
|
||
environment: | ||
MSYSTEM: MSYS | ||
|
||
before_build: | ||
- C:\msys64\usr\bin\pacman --noconfirm --sync --refresh --refresh pacman | ||
- C:\msys64\usr\bin\pacman --noconfirm --sync --refresh --refresh git | ||
- C:\msys64\usr\bin\pacman --noconfirm --sync --refresh --refresh --sysupgrade --sysupgrade | ||
- C:\msys64\usr\bin\bash -lc "$(cygpath ${APPVEYOR_BUILD_FOLDER})/ci/update_ci.sh" | ||
|
||
build_script: | ||
- C:\msys64\usr\bin\bash -lc "script=compile $(cygpath ${APPVEYOR_BUILD_FOLDER})/ci/execute.sh" | ||
- C:\msys64\usr\bin\bash -lc "script=compile make_command='CTEST_OUTPUT_ON_FAILURE=1 make test' $(cygpath ${APPVEYOR_BUILD_FOLDER})/ci/execute.sh" |
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,14 +1,25 @@ | ||
#!/bin/bash | ||
|
||
if [ "${cmake_command}" == "" ]; then | ||
cmake_command="cmake -DENABLE_TESTING=1 -DCMAKE_CXX_FLAGS=-Werror .." | ||
if [ "$APPVEYOR" != "" ]; then | ||
if [ "$PLATFORM" == "x64" ]; then | ||
mingw="mingw64" | ||
else | ||
mingw="mingw32" | ||
fi | ||
cmake_command="cmake -G\"MSYS Makefiles\" -DCMAKE_INSTALL_PREFIX=/${mingw} -DENABLE_TESTING=1 -DCMAKE_CXX_FLAGS=-Werror .." | ||
make_command="make" | ||
else | ||
cmake_command="cmake -DENABLE_TESTING=1 -DCMAKE_CXX_FLAGS=-Werror .." | ||
fi | ||
fi | ||
|
||
if [ "${make_command}" == "" ]; then | ||
make_command="make -j 2" | ||
fi | ||
|
||
cd jucipp || exit | ||
mkdir -p build && cd build || exit | ||
sh -c "${cmake_command}" || exit | ||
exec sh -c "${make_command}" | ||
cd jucipp || echo "Can't cd into jucipp" | ||
git submodule update --init --recursive # appveyor doesn't checkout recursively | ||
mkdir -p build && cd build || echo "Error making build directory" | ||
sh -c "${cmake_command}" || echo "Cmake configuration failed" | ||
exec sh -c "${make_command}" |
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,42 @@ | ||
#!/bin/bash | ||
|
||
function linux () { | ||
sudo apt-get update | ||
sudo apt-get purge lxc-docker | ||
sudo apt-get install --yes --force-yes -o Dpkg::Options::="--force-confnew" linux-image-extra-$(uname -r) docker-engine | ||
sudo service docker stop || exit | ||
sudo rm -rf /var/lib/docker || exit | ||
sudo service docker start || exit | ||
} | ||
|
||
function brew_install() { | ||
(brew outdated "$1" || brew install $1) || (echo "Error installing $1"; return 1) | ||
} | ||
|
||
function osx () { | ||
brew update || return 1 | ||
brew uninstall llvm --force || return 1 | ||
brew upgrade --all || return 1 | ||
brew update || return 1 | ||
brew upgrade --all || return 1 | ||
brew install --with-clang llvm | ||
brew_install "boost" || return 1 | ||
brew_install "aspell" || return 1 | ||
brew_install "clang-format" || return 1 | ||
brew_install "pkg-config" || return 1 | ||
brew_install "gtksourceviewmm3" || return 1 | ||
} | ||
|
||
function windows () { | ||
arch=x86_64 | ||
if [ "$PLATFORM" == "x86" ]; then | ||
arch=i686 | ||
fi | ||
sh -c "pacman -S --noconfirm git mingw-w64-${arch}-cmake make mingw-w64-${arch}-toolchain mingw-w64-${arch}-clang mingw-w64-${arch}-gtkmm3 mingw-w64-${arch}-gtksourceviewmm3 mingw-w64-${arch}-boost mingw-w64-${arch}-aspell mingw-w64-${arch}-aspell-en" | ||
} | ||
|
||
if [ "$TRAVIS_OS_NAME" == "" ]; then | ||
TRAVIS_OS_NAME=windows | ||
fi | ||
|
||
$TRAVIS_OS_NAME |
This file was deleted.
Oops, something went wrong.
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.