new file mode 100644
@@ -0,0 +1,23 @@
+dist: xenial
+language: c
+sudo: required
+ccache: ccache
+
+git:
+ depth: 5
+ quiet: true
+
+before_install:
+ - sudo apt-get update -qq
+ - sudo apt-get install -qq --no-install-recommends -y systemd dh-systemd libkmod2 libkmod-dev libudev1 libudev-dev keyutils libkeyutils-dev libjson-c-dev libuuid1 asciidoctor jq kmod dracut build-essential git-core libelf-dev asciidoc binutils-dev
+ - sudo apt-get build-dep linux-image-$(uname -r)
+
+install:
+ - ./autogen.sh
+ - ./configure CFLAGS='-g -O2' --prefix=/usr --sysconfdir=/etc --libdir=/usr/lib
+ - make -j$(nproc --all)
+ - sudo make install
+
+jobs:
+ include:
+ script: true
@@ -1,4 +1,6 @@
# ndctl
+[![Build Status](https://travis-ci.org/stellarhopper/ndctl.svg?branch=master)](https://travis-ci.org/stellarhopper/ndctl)
+
Utility library for managing the libnvdimm (non-volatile memory device)
sub-system in the Linux kernel
Add a .travis.yml config to enable Travis CI. Also add the Travis CI status 'badge' to README.md For now, this only does a compile test. It can be built upon in the future to do more runtime testing. Since the travis environment uses Ubuntu, this is useful regardless, as it will immediately catch any build failures in an Ubuntu environment. Signed-off-by: Vishal Verma <vishal.l.verma@intel.com> --- .travis.yml | 23 +++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 25 insertions(+) create mode 100644 .travis.yml