From 3715c940b31258d1c731b6b247b995a8fd34f69b Mon Sep 17 00:00:00 2001 From: Sungho Park Date: Sun, 30 Jul 2023 03:49:11 +0000 Subject: [PATCH] docker: Add make install in Dockerfile when test=yes Added code because docker file is missing 'make install' in case test=yes Signed-off-by: Sungho Park --- misc/docker/centos/7/Dockerfile | 2 +- misc/docker/fedora/33/Dockerfile | 2 +- misc/docker/fedora/34/Dockerfile | 2 +- misc/docker/ubuntu/16.04/Dockerfile | 2 +- misc/docker/ubuntu/18.04/Dockerfile | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/misc/docker/centos/7/Dockerfile b/misc/docker/centos/7/Dockerfile index ed8c33fd0..2be39f0b5 100644 --- a/misc/docker/centos/7/Dockerfile +++ b/misc/docker/centos/7/Dockerfile @@ -14,7 +14,7 @@ RUN git clone https://github.com/namhyung/uftrace /usr/src/uftrace RUN if [ "$test" = "yes" ] ; then \ cd /usr/src/uftrace \ && ./misc/install-deps.sh -y \ - && ./configure && make ASAN=1 && make ASAN=1 unittest; \ + && ./configure && make ASAN=1 && make install && make ASAN=1 unittest; \ else \ cd /usr/src/uftrace && ./misc/install-deps.sh -y && ./configure && make && make install; \ fi diff --git a/misc/docker/fedora/33/Dockerfile b/misc/docker/fedora/33/Dockerfile index 7cc0eb93e..4531af48b 100644 --- a/misc/docker/fedora/33/Dockerfile +++ b/misc/docker/fedora/33/Dockerfile @@ -6,7 +6,7 @@ RUN git clone https://github.com/namhyung/uftrace /usr/src/uftrace RUN if [ "$test" = "yes" ] ; then \ cd /usr/src/uftrace \ && ./misc/install-deps.sh -y \ - && ./configure && make ASAN=1 && make ASAN=1 unittest; \ + && ./configure && make ASAN=1 && make install && make ASAN=1 unittest; \ else \ cd /usr/src/uftrace && ./misc/install-deps.sh -y && ./configure && make && make install; \ fi diff --git a/misc/docker/fedora/34/Dockerfile b/misc/docker/fedora/34/Dockerfile index 0ea55f289..70bbc40bc 100644 --- a/misc/docker/fedora/34/Dockerfile +++ b/misc/docker/fedora/34/Dockerfile @@ -6,7 +6,7 @@ RUN git clone https://github.com/namhyung/uftrace /usr/src/uftrace RUN if [ "$test" = "yes" ] ; then \ cd /usr/src/uftrace \ && ./misc/install-deps.sh -y \ - && ./configure && make ASAN=1 && make ASAN=1 unittest; \ + && ./configure && make ASAN=1 && make install && make ASAN=1 unittest; \ else \ cd /usr/src/uftrace && ./misc/install-deps.sh -y && ./configure && make && make install; \ fi diff --git a/misc/docker/ubuntu/16.04/Dockerfile b/misc/docker/ubuntu/16.04/Dockerfile index 547f8a871..6466afc97 100644 --- a/misc/docker/ubuntu/16.04/Dockerfile +++ b/misc/docker/ubuntu/16.04/Dockerfile @@ -7,7 +7,7 @@ RUN git clone https://github.com/namhyung/uftrace /usr/src/uftrace RUN if [ "$test" = "yes" ] ; then \ cd /usr/src/uftrace \ && ./misc/install-deps.sh -y \ - && ./configure && make ASAN=1 && make ASAN=1 unittest; \ + && ./configure && make ASAN=1 && make install && make ASAN=1 unittest; \ else \ cd /usr/src/uftrace && ./misc/install-deps.sh -y && ./configure && make && make install; \ fi diff --git a/misc/docker/ubuntu/18.04/Dockerfile b/misc/docker/ubuntu/18.04/Dockerfile index b77e491e8..77b0b27a3 100644 --- a/misc/docker/ubuntu/18.04/Dockerfile +++ b/misc/docker/ubuntu/18.04/Dockerfile @@ -7,7 +7,7 @@ RUN git clone https://github.com/namhyung/uftrace /usr/src/uftrace RUN if [ "$test" = "yes" ] ; then \ cd /usr/src/uftrace \ && ./misc/install-deps.sh -y \ - && ./configure && make ASAN=1 && make ASAN=1 unittest; \ + && ./configure && make ASAN=1 && make install && make ASAN=1 unittest; \ else \ cd /usr/src/uftrace && ./misc/install-deps.sh -y && ./configure && make && make install; \ fi