From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id 7F18C275EA for ; Tue, 27 Aug 2019 12:37:36 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id e-TuiN7sKhHx for ; Tue, 27 Aug 2019 12:37:36 -0400 (EDT) Received: from smtpng3.m.smailru.net (smtpng3.m.smailru.net [94.100.177.149]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id D8F8F275E6 for ; Tue, 27 Aug 2019 12:37:35 -0400 (EDT) From: "Alexander V. Tikhonov" Subject: [tarantool-patches] [PATCH v1] travis-ci: remove obvious jobs on travis Date: Tue, 27 Aug 2019 19:37:28 +0300 Message-Id: Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: Alexander Turenko Cc: "Alexander V. Tikhonov" , tarantool-patches@freelists.org Removed the jobs that is interesting to check on gitlab-ci instead of travis-ci: - all branches testing jobs - osx 13 "Sierra" - all LTO jobs - ASAN job Part of #4410 --- Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-4410-travis-cleanup Issue: https://github.com/tarantool/tarantool/issues/4410 .travis.yml | 35 +++-------------------------------- 1 file changed, 3 insertions(+), 32 deletions(-) diff --git a/.travis.yml b/.travis.yml index 467e2e10b..c864da3e5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,47 +25,18 @@ jobs: # Testing targets (just run tests on Debian Stretch or OS X). - name: "RelWithDebInfo build + test (Linux, gcc)" env: TARGET=test + if: branch = "master" - name: "RelWithDebInfo build + test (Linux, clang)" env: TARGET=test compiler: clang + if: branch = "master" - name: "RelWithDebInfo build + test (OS X Mojave 10.14)" env: TARGET=test os: osx + if: branch = "master" - name: "Debug build + test + coverage (Linux, gcc)" env: TARGET=coverage - - name: "RelWithDebInfo build + test (OS X High Sierra 10.13)" - env: TARGET=test - os: osx - osx_image: xcode9.4 - if: branch = "master" - # Special targets for LTO. - - name: "LTO build + test (Linux, gcc)" - env: > - TARGET=lto - CMAKE_EXTRA_PARAMS=-DENABLE_LTO=ON - DOCKER_IMAGE=packpack/packpack:debian-buster - APT_EXTRA_FLAGS="--allow-releaseinfo-change-version --allow-releaseinfo-change-suite" - if: branch = "master" - - name: "LTO build + test (Linux, clang8)" - env: > - TARGET=lto_clang8 - CC=clang-8 - CXX=clang++-8 - CMAKE_EXTRA_PARAMS=-DENABLE_LTO=ON - DOCKER_IMAGE=packpack/packpack:debian-buster - APT_EXTRA_FLAGS="--allow-releaseinfo-change-version --allow-releaseinfo-change-suite" if: branch = "master" - compiler: clang - - name: "LTO build + test (OS X Mojave 10.14)" - os: osx - env: TARGET=test CMAKE_EXTRA_PARAMS=-DENABLE_LTO=ON - if: branch = "master" - # Special targets for ASAN. - - name: "ASAN build + test (Linux, clang8)" - env: > - TARGET=asan - DOCKER_IMAGE=packpack/packpack:debian-buster - APT_EXTRA_FLAGS="--allow-releaseinfo-change-version --allow-releaseinfo-change-suite" # Deploy targets (they also catch distro-specific problems). - name: "Create and deploy tarball" env: TARGET=source -- 2.17.1