mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-09 06:32:41 +01:00
21
lkp-tests/Dockerfile
Normal file
21
lkp-tests/Dockerfile
Normal file
@@ -0,0 +1,21 @@
|
||||
FROM debian:sid
|
||||
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
ca-certificates \
|
||||
gcc \
|
||||
git \
|
||||
make \
|
||||
--no-install-recommends \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN git clone --depth 1 https://github.com/01org/lkp-tests.git /usr/src/lkp-tests
|
||||
|
||||
WORKDIR /usr/src/lkp-tests
|
||||
|
||||
RUN make install \
|
||||
&& lkp install
|
||||
|
||||
COPY run.sh /usr/local/bin/run-hackbench
|
||||
|
||||
CMD [ "lkp" ]
|
||||
7
lkp-tests/run.sh
Executable file
7
lkp-tests/run.sh
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/sh
|
||||
|
||||
lkp install ./jobs/hackbench-100.yaml
|
||||
|
||||
lkp run ./jobs/hackbench-100.yaml
|
||||
|
||||
lkp result hackbench
|
||||
Reference in New Issue
Block a user