* [tarantool-patches] [PATCH] travis: add Fedora 28 and 29
@ 2019-03-19 1:01 Alexander Turenko
2019-03-19 11:44 ` [tarantool-patches] " Kirill Yukhin
0 siblings, 1 reply; 4+ messages in thread
From: Alexander Turenko @ 2019-03-19 1:01 UTC (permalink / raw)
To: Kirill Yukhin; +Cc: Alexander Turenko, tarantool-patches
Fixes #4027.
---
issue: https://github.com/tarantool/tarantool/issues/4027
branch: https://github.com/tarantool/tarantool/tree/Totktonada/gh-4027-add-fedora-28-29
It successfully built on Fedora 28 and Fedora 29 and passed restricted
set of tests (see rpm/tarantool.spec lines 146-156) in CI, see the link
below.
https://travis-ci.org/tarantool/tarantool/builds/508099585
I also run full test suite on Fedora 29 and it succeeds.
.travis.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index 8a118a7f2..d1ff5a84a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -54,6 +54,12 @@ jobs:
- name: CentOS 7 build + test + deploy RPM
env: OS=el DIST=7
if: branch = "2.1"
+ - name: Fedora 28 build + test + deploy RPM
+ env: OS=fedora DIST=28
+ if: branch = "2.1"
+ - name: Fedora 29 build + test + deploy RPM
+ env: OS=fedora DIST=29
+ if: branch = "2.1"
- name: Ubuntu Trusty (14.04) build + deploy DEB
env: OS=ubuntu DIST=trusty
if: branch = "2.1"
--
2.20.1
^ permalink raw reply [flat|nested] 4+ messages in thread
* [tarantool-patches] Re: [PATCH] travis: add Fedora 28 and 29
2019-03-19 1:01 [tarantool-patches] [PATCH] travis: add Fedora 28 and 29 Alexander Turenko
@ 2019-03-19 11:44 ` Kirill Yukhin
2019-03-19 12:49 ` Alexander Turenko
0 siblings, 1 reply; 4+ messages in thread
From: Kirill Yukhin @ 2019-03-19 11:44 UTC (permalink / raw)
To: Alexander Turenko; +Cc: tarantool-patches
Hello,
On 19 Mar 04:01, Alexander Turenko wrote:
> Fixes #4027.
> ---
>
> issue: https://github.com/tarantool/tarantool/issues/4027
> branch: https://github.com/tarantool/tarantool/tree/Totktonada/gh-4027-add-fedora-28-29
>
> It successfully built on Fedora 28 and Fedora 29 and passed restricted
> set of tests (see rpm/tarantool.spec lines 146-156) in CI, see the link
> below.
>
> https://travis-ci.org/tarantool/tarantool/builds/508099585
>
> I also run full test suite on Fedora 29 and it succeeds.
I've checked your patch into 2.1 branch.
--
Regards, Kirill Yukhin
^ permalink raw reply [flat|nested] 4+ messages in thread
* [tarantool-patches] Re: [PATCH] travis: add Fedora 28 and 29
2019-03-19 11:44 ` [tarantool-patches] " Kirill Yukhin
@ 2019-03-19 12:49 ` Alexander Turenko
2019-03-19 13:41 ` Kirill Yukhin
0 siblings, 1 reply; 4+ messages in thread
From: Alexander Turenko @ 2019-03-19 12:49 UTC (permalink / raw)
To: Kirill Yukhin; +Cc: tarantool-patches
On Tue, Mar 19, 2019 at 02:44:53PM +0300, Kirill Yukhin wrote:
> Hello,
>
> On 19 Mar 04:01, Alexander Turenko wrote:
> > Fixes #4027.
> > ---
> >
> > issue: https://github.com/tarantool/tarantool/issues/4027
> > branch: https://github.com/tarantool/tarantool/tree/Totktonada/gh-4027-add-fedora-28-29
> >
> > It successfully built on Fedora 28 and Fedora 29 and passed restricted
> > set of tests (see rpm/tarantool.spec lines 146-156) in CI, see the link
> > below.
> >
> > https://travis-ci.org/tarantool/tarantool/builds/508099585
> >
> > I also run full test suite on Fedora 29 and it succeeds.
>
> I've checked your patch into 2.1 branch.
I guess we want to build packages for 1.10 too.
WBR, Alexander Turenko.
>
> --
> Regards, Kirill Yukhin
^ permalink raw reply [flat|nested] 4+ messages in thread
* [tarantool-patches] Re: [PATCH] travis: add Fedora 28 and 29
2019-03-19 12:49 ` Alexander Turenko
@ 2019-03-19 13:41 ` Kirill Yukhin
0 siblings, 0 replies; 4+ messages in thread
From: Kirill Yukhin @ 2019-03-19 13:41 UTC (permalink / raw)
To: Alexander Turenko; +Cc: tarantool-patches
On 19 Mar 15:49, Alexander Turenko wrote:
> On Tue, Mar 19, 2019 at 02:44:53PM +0300, Kirill Yukhin wrote:
> > Hello,
> >
> > On 19 Mar 04:01, Alexander Turenko wrote:
> > > Fixes #4027.
> > > ---
> > >
> > > issue: https://github.com/tarantool/tarantool/issues/4027
> > > branch: https://github.com/tarantool/tarantool/tree/Totktonada/gh-4027-add-fedora-28-29
> > >
> > > It successfully built on Fedora 28 and Fedora 29 and passed restricted
> > > set of tests (see rpm/tarantool.spec lines 146-156) in CI, see the link
> > > below.
> > >
> > > https://travis-ci.org/tarantool/tarantool/builds/508099585
> > >
> > > I also run full test suite on Fedora 29 and it succeeds.
> >
> > I've checked your patch into 2.1 branch.
>
> I guess we want to build packages for 1.10 too.
Committed to 1.10 as well.
--
Regards, Kirill Yukhin
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-03-19 13:41 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-19 1:01 [tarantool-patches] [PATCH] travis: add Fedora 28 and 29 Alexander Turenko
2019-03-19 11:44 ` [tarantool-patches] " Kirill Yukhin
2019-03-19 12:49 ` Alexander Turenko
2019-03-19 13:41 ` Kirill Yukhin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox