mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-30 18:37:46 +08:00
- build Neo for specific GEN to decrease build time on Travis - don't run aub tests on Arch on Semaphore to decrease disk size usage - cleanup in build scripts Signed-off-by: Jacek Danecki <jacek.danecki@intel.com> https://github.com/intel/compute-runtime/pull/227 Change-Id: I037ae1bc1e81fefe43e948453768bc83f0b18f63
13 lines
361 B
Plaintext
13 lines
361 B
Plaintext
FROM docker.io/archlinux/base
|
|
MAINTAINER Jacek Danecki <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 `nproc`
|
|
CMD ["/bin/bash"]
|