* [tarantool-patches] [PATCH v1] travis-ci: remove obvious jobs on travis
@ 2019-08-27 16:37 Alexander V. Tikhonov
2019-08-29 12:43 ` [tarantool-patches] " Alexander Turenko
0 siblings, 1 reply; 3+ messages in thread
From: Alexander V. Tikhonov @ 2019-08-27 16:37 UTC (permalink / raw)
To: Alexander Turenko; +Cc: Alexander V. Tikhonov, tarantool-patches
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
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tarantool-patches] Re: [PATCH v1] travis-ci: remove obvious jobs on travis
2019-08-27 16:37 [tarantool-patches] [PATCH v1] travis-ci: remove obvious jobs on travis Alexander V. Tikhonov
@ 2019-08-29 12:43 ` Alexander Turenko
2019-08-29 12:54 ` [tarantool-patches] " Alexander Tikhonov
0 siblings, 1 reply; 3+ messages in thread
From: Alexander Turenko @ 2019-08-29 12:43 UTC (permalink / raw)
To: Alexander V. Tikhonov; +Cc: tarantool-patches
On Tue, Aug 27, 2019 at 07:37:28PM +0300, Alexander V. Tikhonov wrote:
> 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
Let's remove ASAN, LTO and Mac OS High Sierra. Other changes are to be
agreed with the team.
>
> 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(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tarantool-patches] Re: [tarantool-patches] Re: [PATCH v1] travis-ci: remove obvious jobs on travis
2019-08-29 12:43 ` [tarantool-patches] " Alexander Turenko
@ 2019-08-29 12:54 ` Alexander Tikhonov
0 siblings, 0 replies; 3+ messages in thread
From: Alexander Tikhonov @ 2019-08-29 12:54 UTC (permalink / raw)
To: tarantool-patches
[-- Attachment #1: Type: text/plain, Size: 869 bytes --]
>Четверг, 29 августа 2019, 15:43 +03:00 от Alexander Turenko <alexander.turenko@tarantool.org>:
>
>On Tue, Aug 27, 2019 at 07:37:28PM +0300, Alexander V. Tikhonov wrote:
>> 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
>
>Let's remove ASAN, LTO and Mac OS High Sierra. Other changes are to be
>agreed with the team.
Ok, sure, patch updated rolled back changes for "- all branches testing jobs".
>
>>
>> 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(-)
>
--
Alexander Tikhonov
[-- Attachment #2: Type: text/html, Size: 1691 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-08-29 12:54 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-27 16:37 [tarantool-patches] [PATCH v1] travis-ci: remove obvious jobs on travis Alexander V. Tikhonov
2019-08-29 12:43 ` [tarantool-patches] " Alexander Turenko
2019-08-29 12:54 ` [tarantool-patches] " Alexander Tikhonov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox