mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 09:09:04 +08:00
Signed-off-by: Jacek Danecki <jacek.danecki@intel.com> https://github.com/intel/compute-runtime/pull/70 Change-Id: If24a7e91fab037ac3461c83ce54b192c1f87086e
13 lines
500 B
Plaintext
13 lines
500 B
Plaintext
FROM docker.io/base/archlinux
|
|
MAINTAINER Jacek Danecki <jacek.danecki@intel.com>
|
|
|
|
COPY neo /root/neo
|
|
COPY scripts/prepare-arch-igc-ppa.sh /root
|
|
|
|
RUN pacman -Sy --noconfirm gcc cmake git wget pkg-config ninja
|
|
RUN cd /root; git clone --depth 1 https://github.com/intel/gmmlib gmmlib
|
|
RUN /root/prepare-arch-igc-ppa.sh
|
|
RUN cd /root/build ; cmake -G Ninja -DBUILD_TYPE=Release -DCMAKE_BUILD_TYPE=Release \
|
|
-DDO_NOT_RUN_AUB_TESTS=1 -DDONT_CARE_OF_VIRTUALS=1 ../neo ; ninja -j `nproc`
|
|
CMD ["/bin/bash"]
|