mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Tweak travis build matrix after sort algorithm changes.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@40064 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1c5b12c8fe
commit
c6ead1b23b
1 changed files with 1 additions and 14 deletions
15
.travis.yml
15
.travis.yml
|
@ -5,25 +5,16 @@ compiler:
|
|||
- gcc
|
||||
env:
|
||||
- LIBRARY_COMBO=gnu-gnu-gnu
|
||||
- LIBRARY_COMBO=gnu-gnu-gnu SORT_ALG=timsort
|
||||
- LIBRARY_COMBO=ng-gnu-gnu
|
||||
- LIBRARY_COMBO=ng-gnu-gnu SORT_ALG=timsort
|
||||
- LIBRARY_COMBO=ng-gnu-gnu BASE_ABI=--disable-mixed-abi
|
||||
- LIBRARY_COMBO=ng-gnu-gnu BASE_ABI=--disable-mixed-abi SORT_ALG=timsort
|
||||
matrix:
|
||||
exclude:
|
||||
- compiler: gcc
|
||||
env: LIBRARY_COMBO=ng-gnu-gnu
|
||||
- compiler: gcc
|
||||
env: LIBRARY_COMBO=ng-gnu-gnu SORT_ALG=timsort
|
||||
- compiler: gcc
|
||||
env: LIBRARY_COMBO=ng-gnu-gnu BASE_ABI=--disable-mixed-abi
|
||||
- compiler: gcc
|
||||
env: LIBRARY_COMBO=ng-gnu-gnu BASE_ABI=--disable-mixed-abi SORT_ALG=timsort
|
||||
- compiler: clang
|
||||
env: LIBRARY_COMBO=gnu-gnu-gnu
|
||||
- compiler: clang
|
||||
env: LIBRARY_COMBO=gnu-gnu-gnu SORT_ALG=timsort
|
||||
sudo: required
|
||||
before_install:
|
||||
- sudo apt-get -qq update
|
||||
|
@ -53,9 +44,5 @@ before_script: >
|
|||
export GNUSTEP_MAKEFILES=$HOME/staging/share/GNUstep/Makefiles;
|
||||
. $HOME/staging/share/GNUstep/Makefiles/GNUstep.sh;
|
||||
script: >
|
||||
if [ -z "$SORT_ALG" ];
|
||||
then
|
||||
SORT_ALG=shellsort
|
||||
fi;
|
||||
./configure --with-sort-algorithm=$SORT_ALG $BASE_ABI;
|
||||
./configure $BASE_ABI;
|
||||
make && make install && make check || (cat Tests/tests.log && false);
|
||||
|
|
Loading…
Reference in a new issue