All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jason Gunthorpe <jgg@ziepe.ca>
To: linux-rdma@vger.kernel.org
Cc: Jason Gunthorpe <jgg@mellanox.com>
Subject: [PATCH rdma-core 04/19] build/travis: Do not build packages in travis anymore
Date: Tue, 23 Jul 2019 16:01:22 -0300	[thread overview]
Message-ID: <20190723190137.15370-5-jgg@ziepe.ca> (raw)
In-Reply-To: <20190723190137.15370-1-jgg@ziepe.ca>

From: Jason Gunthorpe <jgg@mellanox.com>

AZP does this now and (so far) doesn't randomly fail.

Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
---
 .travis.yml                 |  4 ----
 buildlib/package-build-test | 21 ---------------------
 2 files changed, 25 deletions(-)
 delete mode 100755 buildlib/package-build-test

diff --git a/.travis.yml b/.travis.yml
index 1cc2c69ca8671d..23226a679acb6b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -39,9 +39,6 @@ addons:
       - python3-dev
       - python3-pip
 
-service:
-    - docker
-
 before_script:
   - export LATEST_GCC_LINARO_URL=`wget -qO - https://releases.linaro.org/components/toolchain/binaries/latest-7/aarch64-linux-gnu/ | grep -o '<a href=['"'"'"].*gcc-linaro-.*x86_64_aarch64-linux-gnu.tar.xz['"'"'"]'  |  sed -e 's/^<a href=["'"'"']//' -e 's/["'"'"']$//'`
   - export LATEST_GCC_LINARO_TAR=`basename $LATEST_GCC_LINARO_URL`
@@ -52,7 +49,6 @@ before_script:
 script:
   - buildlib/travis-build
   - buildlib/travis-checkpatch
-  - buildlib/package-build-test
   - buildlib/github-release
 deploy:
   # Deploy assets to Github releases
diff --git a/buildlib/package-build-test b/buildlib/package-build-test
deleted file mode 100755
index 29c17838e9e894..00000000000000
--- a/buildlib/package-build-test
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-
-# fail on errors
-set -e
-# be verbose
-set -x
-
-# Do not run these tests if we are already inside a container
-if [ -e "/.dockerenv" ] || (grep -q docker /proc/self/cgroup &>/dev/null); then
-       echo "We are running in a container, skipping ..."
-       exit 0
-fi
-
-for OS in centos7 leap
-do
-	echo
-	echo "Checking package build for ${OS} ...."
-	echo
-	buildlib/cbuild build-images ${OS}
-	buildlib/cbuild pkg --use-prebuilt-pandoc --with static ${OS}
-done
-- 
2.22.0


  parent reply	other threads:[~2019-07-23 19:11 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-23 19:01 [PATCH rdma-core 00/19] Complete the azure pipelines configuration Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 01/19] rdmacm: Fix missing libraries on centos6 build Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 02/19] util: Enable uninitialized_var on powerpc Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 03/19] build/cbuild: Remove docker-gc Jason Gunthorpe
2019-07-23 19:01 ` Jason Gunthorpe [this message]
2019-07-23 19:01 ` [PATCH rdma-core 05/19] build/travis: Do not run checkpatch Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 06/19] build/travis: Do not cross compile for ARM64 Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 07/19] build/azp: Use a version number for the docker images Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 08/19] build/cbuild: Add push-azp-images Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 09/19] build/azp: Use gcc 9.3 for building Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 10/19] build/azp: Use clang 8.0 " Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 11/19] build/azp: Run a test compile on ppc64el as well Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 12/19] build/azp: Add Fedora 30 to the distro testing Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 13/19] build/azp: Update check-build to work with python3 Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 14/19] build/cbuild: Update cbuild " Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 15/19] build/azp: Reduce the package list Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 16/19] build/azp: Add centos6 to the test distributions Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 17/19] build/azp: Run lintian over the bionic .debs Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 18/19] build: Use the CMake variable -DENABLE_WERROR to turn on WERROR mode Jason Gunthorpe
2019-07-23 19:01 ` [PATCH rdma-core 19/19] build/azp: Have Azure Pipelines create releases when tags are made Jason Gunthorpe

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190723190137.15370-5-jgg@ziepe.ca \
    --to=jgg@ziepe.ca \
    --cc=jgg@mellanox.com \
    --cc=linux-rdma@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.