mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
Remove Travis CI matrix for now (best utilized when/if we have other platforms/arches)
This commit is contained in:
parent
022efafbcc
commit
ab83e852ff
12
.travis.yml
12
.travis.yml
@ -6,15 +6,7 @@ before_install:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
matrix:
|
matrix:
|
||||||
- BUILD_STEP="jdk-test"
|
- BUILD_STEP=""
|
||||||
- BUILD_STEP="test"
|
|
||||||
- BUILD_STEP="mode=debug test"
|
|
||||||
- BUILD_STEP="process=interpret test"
|
|
||||||
- BUILD_STEP="mode=debug bootimage=true test"
|
|
||||||
- BUILD_STEP="bootimage=true test"
|
|
||||||
- BUILD_STEP="openjdk=$JAVA_HOME test"
|
|
||||||
- BUILD_STEP="tails=true continuations=true heapdump=true test"
|
|
||||||
- BUILD_STEP="codegen-targets=all test"
|
|
||||||
- BUILD_STEP="PUBLISH"
|
- BUILD_STEP="PUBLISH"
|
||||||
global:
|
global:
|
||||||
- TERM=dumb
|
- TERM=dumb
|
||||||
@ -24,4 +16,4 @@ env:
|
|||||||
matrix:
|
matrix:
|
||||||
fast_finish: true
|
fast_finish: true
|
||||||
|
|
||||||
script: ./test/ci.sh STEP ${BUILD_STEP}
|
script: ./test/ci.sh ${BUILD_STEP}
|
||||||
|
15
test/ci.sh
15
test/ci.sh
@ -54,16 +54,11 @@ has_flag() {
|
|||||||
|
|
||||||
make_target=test
|
make_target=test
|
||||||
|
|
||||||
if [[ "${1}" == "STEP" ]]; then
|
if [[ "${1}" == "PUBLISH" ]]; then
|
||||||
shift 1
|
if [[ $(uname -s) == "Darwin" || ${TRAVIS_OS_NAME} == "osx" ]]; then
|
||||||
if [[ "${1}" == "PUBLISH" ]]; then
|
publish "macosx" "i386 x86_64"
|
||||||
if [[ $(uname -s) == "Darwin" || ${TRAVIS_OS_NAME} == "osx" ]]; then
|
elif [[ $(uname -s) == "Linux" ]]; then
|
||||||
publish "macosx" "i386 x86_64"
|
publish "linux windows" "i386 x86_64"
|
||||||
elif [[ $(uname -s) == "Linux" ]]; then
|
|
||||||
publish "linux windows" "i386 x86_64"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
run make ${@}
|
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if [[ $(uname -o) != "Cygwin" ]]; then
|
if [[ $(uname -o) != "Cygwin" ]]; then
|
||||||
|
Loading…
Reference in New Issue
Block a user