File tree Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Expand file tree Collapse file tree 1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- FROM debian:unstable-slim AS builder
16
-
17
- RUN apt-get update && apt-get install -y --no-install-recommends libaccel-config-dev \
18
- gcc g++ nasm make cmake autoconf automake libtool pkg-config git ca-certificates uuid-dev
19
-
20
- RUN cd / && git clone --recurse-submodules --branch v1.1.2 --depth 1 https://github.com/intel/DML.git && \
21
- mkdir DML/build && cd DML/build && \
22
- cmake .. && \
23
- make install && \
24
- mv -v /usr/local/bin/tests /usr/local/bin/dml_tests && \
25
- mv -v /usr/local/bin/tests_mt /usr/local/bin/dml_tests_mt
26
-
27
- RUN cd / && git clone --recurse-submodules --depth 1 --branch v1.5.0 https://github.com/intel/qpl.git && \
28
- mkdir qpl/build && cd qpl/build && \
29
- cmake -DLOG_HW_INIT=ON .. && \
30
- make install
31
-
32
15
FROM debian:unstable-slim
33
16
34
17
RUN apt-get update && apt-get install -y --no-install-recommends pciutils accel-config accel-config-test && rm -rf /var/lib/apt/lists/\*
35
18
36
19
RUN sed -i -e '420,429d;480,489d' /usr/libexec/accel-config/test/iaa_user_test_runner.sh
37
- COPY --from=builder /usr/local /usr/local
38
- COPY --from=builder /qpl/build/examples /usr/local/bin/
39
-
40
- COPY dml-test.sh /usr/local/bin/
41
- COPY qpl-test.sh /usr/local/bin/
You can’t perform that action at this time.
0 commit comments