This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via 1e47fa70c2eeb3d2f3805af28a00476c7284ef24 (commit)
from 7599dfb05bf942eaad227462f1a58a78aac9e67d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 1e47fa70c2eeb3d2f3805af28a00476c7284ef24
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Thu Feb 15 14:39:11 2018 +0300
shippable: disable perf-proc tests
These tests have tendency of hanging up Shippable occasionally.
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/.shippable.yml b/.shippable.yml
index 72d17bda..6b2a73c3 100644
--- a/.shippable.yml
+++ b/.shippable.yml
@@ -5,8 +5,8 @@ compiler:
- clang
env:
- - CONF="--disable-test-perf"
- - CONF="--disable-abi-compat --disable-test-perf"
+ - CONF="--disable-test-perf --disable-test-perf-proc"
+ - CONF="--disable-abi-compat --disable-test-perf --disable-test-perf-proc"
# - CONF="--enable-schedule-sp"
# - CONF="--enable-schedule-iquery"
# - CONF="--enable-dpdk-zero-copy"
@@ -18,7 +18,7 @@ env:
matrix:
allow_failures:
- compiler: clang
- env: CONF="--disable-abi-compat --disable-test-perf"
+ env: CONF="--disable-abi-compat --disable-test-perf --disable-test-perf-proc"
build:
pre_ci:
-----------------------------------------------------------------------
Summary of changes:
.shippable.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "".
The branch, master has been updated
via c175ae14ed7122dce26e89a4fc464eba7208bb22 (commit)
from ea529e1c3312459b6722c8a175d7f03ad0251a0a (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c175ae14ed7122dce26e89a4fc464eba7208bb22
Author: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Date: Mon Feb 12 18:45:22 2018 +0300
travis: add two tests using DPDK version 17.11
Signed-off-by: Dmitry Eremin-Solenikov <dmitry.ereminsolenikov(a)linaro.org>
Reviewed-by: Bill Fischofer <bill.fischofer(a)linaro.org>
Signed-off-by: Maxim Uvarov <maxim.uvarov(a)linaro.org>
diff --git a/.travis.yml b/.travis.yml
index e36c7bcb..5fbb42c4 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -59,6 +59,8 @@ env:
- CONF="--enable-dpdk-zero-copy"
- CONF="--disable-static-applications"
- DPDK_SHARED="y" CONF="--disable-static-applications"
+ - DPDK_VERS="17.11" CONF=""
+ - DPDK_VERS="17.11" DPDK_SHARED="y" CONF="--disable-static-applications"
compiler:
- gcc
-----------------------------------------------------------------------
Summary of changes:
.travis.yml | 2 ++
1 file changed, 2 insertions(+)
hooks/post-receive
--