Add support for travis-ci ppc64le builds. Updated matrix in .travis.yml to include an arch: ppc64le build. To keep the total build time at an acceptable level only a single build job is included in the matrix for ppc64le.
A build report example can be found here [1] [0] http://travis-ci.org/ [1] https://travis-ci.org/djlwilder/ovs/builds/621795084 Signed-off-by: David Wilder <[email protected]> Acked-by: William Tu <[email protected]> --- This commit must be applied on top of Lance Yang's post: [PATCH v2 2/3] travis: Move x86-only addon packages to linux-prepare.sh Merging with Lance's other two patches should be easy. .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index 2dc4d436b..308c09635 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,6 +50,9 @@ matrix: - os: osx compiler: clang env: OPTS="--disable-ssl" + - arch: ppc64le + compiler: gcc + env: OPTS="--disable-ssl" script: ./.travis/${TRAVIS_OS_NAME}-build.sh $OPTS -- 2.23.0.162.gf1d4a28 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
