This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/trafficserver-ci.git


The following commit(s) were added to refs/heads/main by this push:
     new 9e5fcb8  Remove the build_h3_tools dir (#171)
9e5fcb8 is described below

commit 9e5fcb841d2cc6d38f302859c3b9b4e718246f57
Author: Brian Neradt <[email protected]>
AuthorDate: Tue Jun 6 21:38:50 2023 -0500

    Remove the build_h3_tools dir (#171)
    
    This takes up a lot of space, especially now that boring is in there.
---
 docker/centos7/Dockerfile     | 3 ++-
 docker/fedora38/Dockerfile    | 4 +++-
 docker/rockylinux8/Dockerfile | 4 +++-
 docker/rockylinux9/Dockerfile | 2 +-
 4 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/docker/centos7/Dockerfile b/docker/centos7/Dockerfile
index c257baf..ca0bdd4 100644
--- a/docker/centos7/Dockerfile
+++ b/docker/centos7/Dockerfile
@@ -57,7 +57,8 @@ RUN \
   source /opt/rh/devtoolset-11/enable; \
   source /opt/rh/rh-python38/enable; \
   export PATH=/opt/bin:${PATH}; \
-  bash ${h3_tools_dir}/build_h3_tools.sh
+  bash ${h3_tools_dir}/build_h3_tools.sh; \
+  rm -rf ${h3_tools_dir} /root/.rustup
 
 WORKDIR /root
 
diff --git a/docker/fedora38/Dockerfile b/docker/fedora38/Dockerfile
index 95216e4..8792d43 100644
--- a/docker/fedora38/Dockerfile
+++ b/docker/fedora38/Dockerfile
@@ -35,7 +35,9 @@ RUN mkdir -p ${h3_tools_dir}
 WORKDIR ${h3_tools_dir}
 COPY /build_h3_tools.sh ${h3_tools_dir}/build_h3_tools.sh
 # This will install OpenSSL QUIC and related tools in /opt.
-RUN bash ${h3_tools_dir}/build_h3_tools.sh
+RUN \
+  bash ${h3_tools_dir}/build_h3_tools.sh; \
+  rm -rf ${h3_tools_dir} /root/.rustup
 WORKDIR /root
 
 # Make sure we pick up this built version of curl, which is in /opt/bin.
diff --git a/docker/rockylinux8/Dockerfile b/docker/rockylinux8/Dockerfile
index 1f3cf80..8fb5418 100644
--- a/docker/rockylinux8/Dockerfile
+++ b/docker/rockylinux8/Dockerfile
@@ -47,7 +47,9 @@ RUN mkdir -p ${h3_tools_dir}
 WORKDIR ${h3_tools_dir}
 COPY /build_h3_tools.sh ${h3_tools_dir}/build_h3_tools.sh
 # This will install OpenSSL QUIC and related tools in /opt.
-RUN bash ${h3_tools_dir}/build_h3_tools.sh
+RUN \
+  bash ${h3_tools_dir}/build_h3_tools.sh; \
+  rm -rf ${h3_tools_dir} /root/.rustup
 WORKDIR /root
 
 # Install some of our needed go applications.
diff --git a/docker/rockylinux9/Dockerfile b/docker/rockylinux9/Dockerfile
index 09abe4c..418c775 100644
--- a/docker/rockylinux9/Dockerfile
+++ b/docker/rockylinux9/Dockerfile
@@ -40,7 +40,7 @@ RUN dnf -y install libev-devel jemalloc-devel libxml2-devel \
 #WORKDIR ${h3_tools_dir}
 #COPY /build_h3_tools.sh ${h3_tools_dir}/build_h3_tools.sh
 # This will install OpenSSL QUIC and related tools in /opt.
-#RUN bash ${h3_tools_dir}/build_h3_tools.sh
+#RUN bash ${h3_tools_dir}/build_h3_tools.sh; rm -rf ${h3_tools_dir} 
/root/.rustup
 WORKDIR /root
 
 # Make sure we pick up this built version of curl, which is in /opt/bin.

Reply via email to