mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
add lkp-tests
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
parent
46ee3ea2fa
commit
f8ceffc602
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
|
Loading…
Reference in New Issue
Block a user