You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ez...@apache.org on 2021/03/24 21:47:46 UTC

[trafficserver-ci] branch main updated: Switch from devtoolset to gcc-toolset-9

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

eze 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 7848d22  Switch from devtoolset to gcc-toolset-9
7848d22 is described below

commit 7848d22bac29db569e74d34fe6b1a3b172df818a
Author: Evan Zelkowitz <ez...@apache.org>
AuthorDate: Wed Mar 24 15:47:39 2021 -0600

    Switch from devtoolset to gcc-toolset-9
---
 docker/centos/Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docker/centos/Dockerfile b/docker/centos/Dockerfile
index 04c7cc3..99abb41 100644
--- a/docker/centos/Dockerfile
+++ b/docker/centos/Dockerfile
@@ -17,7 +17,7 @@ RUN yum -y update; \
 
 RUN if [ ! -z "$(grep -i centos /etc/redhat-release)" ]; then \
     yum -y install centos-release-scl; \
-    yum -y install devtoolset-7 devtoolset-7-libasan-devel; \
+    yum -y install gcc-toolset-9 gcc-toolset-9-libasan-devel; \
     fi
 
 RUN yum clean all