stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=52b8e684e2f306e38de21247f99940382f566be1
commit 52b8e684e2f306e38de21247f99940382f566be1 Author: Mike Blumenkrantz <[email protected]> Date: Sun Jul 22 01:22:06 2018 -0400 ci: disable unnecessary build targets examples and install are both built by distcheck build, no need to also build them in every other build there's also no need to try building an app against the compiled libraries since ci runs unit tests, requiring binaries to run after linking to the libraries Differential Revision: https://phab.enlightenment.org/D6663 --- .travis.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1990eb7c2a..0f5de0fa94 100644 --- a/.travis.yml +++ b/.travis.yml @@ -95,20 +95,20 @@ script: - .ci/ci-setup-ccache.sh "$CI_BUILD_TYPE" - .ci/ci-make.sh "$CI_BUILD_TYPE" - .ci/ci-make-checkbuild.sh "$CI_BUILD_TYPE" - - .ci/ci-make-examples.sh "$CI_BUILD_TYPE" + #- .ci/ci-make-examples.sh "$CI_BUILD_TYPE" - | if [[ "$TRAVIS_OS_NAME" == "linux" ]] && [[ "$CI_BUILD_TYPE" == "" ]]; then .ci/ci-make-benchmark.sh "$CI_BUILD_TYPE" fi - - .ci/ci-make-install.sh "$CI_BUILD_TYPE" + #- .ci/ci-make-install.sh "$CI_BUILD_TYPE" - .ci/ci-make-check.sh "$CI_BUILD_TYPE" - .ci/ci-make-distcheck.sh "$CI_BUILD_TYPE" - - | - if [[ "$DISTRO" == "" ]] && [[ "$TRAVIS_OS_NAME" != "linux" ]] ; then - true - elif [[ "$CI_BUILD_TYPE" != "release-ready" ]] ; then - docker exec --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) .ci/build-efl-app.sh - fi + #- | + #if [[ "$DISTRO" == "" ]] && [[ "$TRAVIS_OS_NAME" != "linux" ]] ; then + #true + #elif [[ "$CI_BUILD_TYPE" != "release-ready" ]] ; then + #docker exec --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) .ci/build-efl-app.sh + #fi before_cache: - .ci/ci-ccache-stats.sh - | --
