On Thu, Jan 24, 2019 at 09:35:48AM +0000, Bruce Richardson wrote: > On Wed, Jan 23, 2019 at 05:07:14PM -0500, Michael Santana wrote: > > GitHub is a service used by developers to store repositories. GitHub > > provides service integrations that allow 3rd party services to access > > developer repositories and perform actions. One of these services is > > Travis-CI, a simple continuous integration platform. > > > > This is a simple initial implementation of a travis build for the DPDK > > project. It doesn't require any changes from individual developers to > > enable, but will allow those developers who opt-in to GitHub and the > > travis service to get automatic builds for every push they make. > > > > Additionally, the travis service will send an email to the test-report > > list informing anyone interested in the automated build (including a > > result). > > > > Signed-off-by: Aaron Conole <acon...@redhat.com> > > Signed-off-by: Michael Santana <msant...@redhat.com> > > --- > > .ci/linux-build.sh | 34 +++++++++++++++++++++++++ > > .ci/linux-setup.sh | 3 +++ > > .travis.yml | 39 +++++++++++++++++++++++++++++ > > MAINTAINERS | 6 +++++ > > doc/guides/contributing/patches.rst | 3 +++ > > 5 files changed, 85 insertions(+) > > create mode 100755 .ci/linux-build.sh > > create mode 100755 .ci/linux-setup.sh > > create mode 100644 .travis.yml > > And on a more general note, this is great to see! The more automated CI builds we can get, the better. Thanks.
/Bruce