diff options
author | Stewart Smith <stewart@linux.ibm.com> | 2019-05-21 09:52:16 +1000 |
---|---|---|
committer | Stewart Smith <stewart@linux.ibm.com> | 2019-05-21 12:46:11 +1000 |
commit | ac734a084319eac44d3698f5929b6e10c7eff77f (patch) | |
tree | 933f415fd7e188092eb76390bec669cec785ea23 | |
parent | 59bdc3a2d199a0d2599732e9ff05f4efb4213c10 (diff) | |
download | skiboot-ac734a084319eac44d3698f5929b6e10c7eff77f.zip skiboot-ac734a084319eac44d3698f5929b6e10c7eff77f.tar.gz skiboot-ac734a084319eac44d3698f5929b6e10c7eff77f.tar.bz2 |
opal-ci: Add Fedora 30
Disable Fedora30 on ppc64le due to mysterious failures
Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | opal-ci/Dockerfile-fedora30 | 9 | ||||
l--------- | opal-ci/build-fedora30.sh | 1 |
3 files changed, 13 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index b48d6fb..d625d97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,6 +13,7 @@ env: - RUN_ON_CONTAINER=ubuntu-latest - RUN_ON_CONTAINER=centos7 - RUN_ON_CONTAINER=fedora29 + - RUN_ON_CONTAINER=fedora30 - RUN_ON_CONTAINER=fedora-rawhide - RUN_ON_CONTAINER=debian-stretch - RUN_ON_CONTAINER=debian-unstable @@ -25,6 +26,8 @@ matrix: allow_failures: - env: RUN_ON_CONTAINER=fedora-rawhide - env: RUN_ON_CONTAINER=debian-unstable + - os: linux-ppc64le + env: RUN_ON_CONTAINER=fedora30 exclude: - os: linux-ppc64le env: RUN_ON_CONTAINER=centos7 diff --git a/opal-ci/Dockerfile-fedora30 b/opal-ci/Dockerfile-fedora30 new file mode 100644 index 0000000..cd6b064 --- /dev/null +++ b/opal-ci/Dockerfile-fedora30 @@ -0,0 +1,9 @@ +FROM fedora:30 +RUN dnf -y install --allowerasing wget curl xterm gcc git xz make diffutils findutils expect valgrind valgrind-devel ccache dtc openssl-devel +RUN dnf -y install gcc-powerpc64-linux-gnu +# below packages are for building dtc +RUN dnf -y install flex bison +RUN if [ `arch` = "x86_64" ]; then dnf -y install http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.1-0/systemsim-p9-1.1-0.f22.x86_64.rpm; fi +COPY . /build/ +WORKDIR /build + diff --git a/opal-ci/build-fedora30.sh b/opal-ci/build-fedora30.sh new file mode 120000 index 0000000..fe333f0 --- /dev/null +++ b/opal-ci/build-fedora30.sh @@ -0,0 +1 @@ +build-fedora29.sh
\ No newline at end of file |