From 930fa2caf84d9160cb22ee5a4e59bdc810d8b411 Mon Sep 17 00:00:00 2001 From: Stewart Smith Date: Thu, 17 Nov 2016 09:31:45 +1100 Subject: [PATCH] travis: add fedora rawhide Signed-off-by: Stewart Smith --- .travis.yml | 2 ++ opal-ci/Dockerfile-fedora-rawhide | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 opal-ci/Dockerfile-fedora-rawhide diff --git a/.travis.yml b/.travis.yml index a986d07d7c94..d4b63d6e99be 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,6 +10,7 @@ env: - RUN_ON_CONTAINER=centos6 - RUN_ON_CONTAINER=centos7 - RUN_ON_CONTAINER=fedora24 + - RUN_ON_CONTAINER=fedora-rawhide global: # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created # via the "travis encrypt" command using the project repo's public key @@ -18,6 +19,7 @@ env: matrix: allow_failures: - env: RUN_ON_CONTAINER=fedora24 + - env: RUN_ON_CONTAINER=fedora-rawhide sudo: required services: docker diff --git a/opal-ci/Dockerfile-fedora-rawhide b/opal-ci/Dockerfile-fedora-rawhide new file mode 100644 index 000000000000..d02ee0cc1c8c --- /dev/null +++ b/opal-ci/Dockerfile-fedora-rawhide @@ -0,0 +1,6 @@ +FROM fedora:rawhide +RUN dnf -y install wget xterm gcc git xz make diffutils findutils expect valgrind valgrind-devel ccache +RUN dnf -y install gcc-powerpc64-linux-gnu +COPY . /build/ +WORKDIR /build +ENTRYPOINT ./opal-ci/build-fedora24.sh