mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-26 07:00:17 +08:00
- to workaround memory limit on Semaphore Signed-off-by: Jacek Danecki <jacek.danecki@intel.com> https://github.com/intel/compute-runtime/pull/282 Change-Id: I05f5871b46e8d500731a976b2d3088e90f00c256
13 lines
347 B
Plaintext
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 1
|
|
CMD ["/bin/bash"]
|