Files
compute-runtime/scripts/docker/Dockerfile-arch
Jacek Danecki 508c4af14e ci: update compilers and OS's
Signed-off-by: Jacek Danecki <jacek.danecki@intel.com>

https://github.com/intel/compute-runtime/pull/269

Change-Id: I5dfa4b226bcfd212274f502e21d027a977b9e840
2020-03-09 19:11:34 +01:00

13 lines
347 B
Plaintext

FROM docker.io/archlinux/base
LABEL maintainer="jacek.danecki@intel.com"
COPY neo /root/neo
COPY scripts/prepare-arch.sh /root
RUN /root/prepare-arch.sh
RUN cd /root/build ; cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ \
-DDO_NOT_RUN_AUB_TESTS=1 ../neo ; \
ninja -j 2
CMD ["/bin/bash"]