diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | opal-ci/Dockerfile-fedora25 | 6 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 1af1b75..992936c 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=fedora25 - RUN_ON_CONTAINER=fedora-rawhide global: # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created @@ -19,6 +20,7 @@ env: matrix: allow_failures: - env: RUN_ON_CONTAINER=fedora24 + - env: RUN_ON_CONTAINER=fedora25 - env: RUN_ON_CONTAINER=fedora-rawhide sudo: required diff --git a/opal-ci/Dockerfile-fedora25 b/opal-ci/Dockerfile-fedora25 new file mode 100644 index 0000000..fee18aa --- /dev/null +++ b/opal-ci/Dockerfile-fedora25 @@ -0,0 +1,6 @@ +FROM fedora:25 +RUN dnf -y install wget curl 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 |