You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2023/03/30 23:00:56 UTC

[trafficserver-ci] branch main updated: osx PR builds: add --enable-werror (#135)

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 0dced60  osx PR builds: add --enable-werror (#135)
0dced60 is described below

commit 0dced606febb6b4ab3764f4a3acdc9e9a0537d36
Author: Brian Neradt <br...@gmail.com>
AuthorDate: Thu Mar 30 18:00:52 2023 -0500

    osx PR builds: add --enable-werror (#135)
    
    This way we'll catch patches that introduce osx warnings.
---
 jenkins/github/osx.pipeline | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/jenkins/github/osx.pipeline b/jenkins/github/osx.pipeline
index 97ab7ca..64e9baa 100644
--- a/jenkins/github/osx.pipeline
+++ b/jenkins/github/osx.pipeline
@@ -21,7 +21,7 @@ pipeline {
                 echo 'Starting build'
                 dir('src') {
                     sh('autoreconf -fiv')
-                    sh('CC="clang" CXX="clang++" CXXFLAGS="-Qunused-arguments" WITH_LIBCPLUSPLUS="yes" ./configure --enable-experimental-plugins --with-openssl=/usr/local/opt/openssl')
+                    sh('CC="clang" CXX="clang++" CXXFLAGS="-Qunused-arguments" WITH_LIBCPLUSPLUS="yes" ./configure --enable-experimental-plugins --with-openssl=/usr/local/opt/openssl --enable-werror')
                     sh('make -j3')
                 }
             }