aboutsummaryrefslogtreecommitdiff
path: root/opal-ci/Dockerfile-debian-stretch
diff options
context:
space:
mode:
authorStewart Smith <stewart@linux.ibm.com>2018-05-04 16:34:15 +1000
committerStewart Smith <stewart@linux.ibm.com>2018-05-06 10:27:37 -0500
commit7dab94cf5727e71296ccce8f3e18f08e95dc9de4 (patch)
tree0c15b8ebcc7a6cf87b322a6935f0525f9636ee99 /opal-ci/Dockerfile-debian-stretch
parentf8ee10ee9505ab44e823586bf5c4ae5b1044df87 (diff)
downloadskiboot-7dab94cf5727e71296ccce8f3e18f08e95dc9de4.zip
skiboot-7dab94cf5727e71296ccce8f3e18f08e95dc9de4.tar.gz
skiboot-7dab94cf5727e71296ccce8f3e18f08e95dc9de4.tar.bz2
travis: fix if x86_64 tests in dockerfiles.
In today's lesson, Stewart learns shell. Fixes: e101e85c9ff65e82f7ede4d5541d921b4a3ed923 Reported-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Stewart Smith <stewart@linux.ibm.com>
Diffstat (limited to 'opal-ci/Dockerfile-debian-stretch')
-rw-r--r--opal-ci/Dockerfile-debian-stretch2
1 files changed, 1 insertions, 1 deletions
diff --git a/opal-ci/Dockerfile-debian-stretch b/opal-ci/Dockerfile-debian-stretch
index 96d3863..9485e7a 100644
--- a/opal-ci/Dockerfile-debian-stretch
+++ b/opal-ci/Dockerfile-debian-stretch
@@ -4,7 +4,7 @@ RUN apt-get update -qq
RUN if [ `arch` != "ppc64le" ]; then apt-get update -qq && apt-get install -y gcc-powerpc64le-linux-gnu; fi
RUN apt-get update -qq && apt-get install -y gcc ccache expect libssl-dev wget xterm curl device-tree-compiler build-essential gcc python g++ pkg-config libz-dev libglib2.0-dev libpixman-1-dev libfdt-dev git libstdc++6 valgrind libtcl8.6
RUN apt-get update -qq && apt-get install -y gcc-arm-linux-gnueabi || true
-RUN if [ `arch` == "x86_64" ]; then curl -L -O http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.0-0/systemsim-p9-1.0-0-trusty_amd64.deb; dpkg -i systemsim-p9-1.0-0-trusty_amd64.deb; fi
+RUN if [ `arch` = "x86_64" ]; then curl -L -O http://public.dhe.ibm.com/software/server/powerfuncsim/p9/packages/v1.0-0/systemsim-p9-1.0-0-trusty_amd64.deb; dpkg -i systemsim-p9-1.0-0-trusty_amd64.deb; fi
COPY . /build/
WORKDIR /build
ENTRYPOINT ./opal-ci/build-ubuntu-16.04.sh