From: W.C.A. Wijngaards Date: Thu, 24 Jun 2021 10:07:22 +0000 (+0200) Subject: analysis workflow, use log line groups. X-Git-Tag: release-1.13.2rc1~122 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb208d48fbae87306263c270f5d523282a15ed46;p=thirdparty%2Funbound.git analysis workflow, use log line groups. --- diff --git a/.github/workflows/analysis_ports.yml b/.github/workflows/analysis_ports.yml index 4ee010c0d..9ce48186e 100644 --- a/.github/workflows/analysis_ports.yml +++ b/.github/workflows/analysis_ports.yml @@ -80,13 +80,29 @@ jobs: echo PKG_CONFIG_PATH=${PKG_CONFIG_PATH} export CONFIG_OPTS="--build=$AUTOTOOLS_BUILD --host=$AUTOTOOLS_HOST --prefix=$IOS_PREFIX --with-ssl=$IOS_PREFIX --disable-gost --with-libexpat=$IOS_PREFIX" echo CONFIG_OPTS=${CONFIG_OPTS} + echo "::group::setenv_ios.sh" + echo "./contrib/ios/setenv_ios.sh" source ./contrib/ios/setenv_ios.sh + echo "::endgroup::" + echo "::group::install_openssl" + echo "./contrib/ios/install_openssl.sh" ./contrib/ios/install_openssl.sh + echo "::endgroup::" + echo "::group::install_expat" + echo "./contrib/ios/install_expat.sh" ./contrib/ios/install_expat.sh + echo "::endgroup::" + echo "::group::configure" + echo "./configure ${CONFIG_OPTS}" ./configure ${CONFIG_OPTS} + echo "::endgroup::" + echo "::group::make" # make is here to preserve environment variables make + echo "::endgroup::" + echo "::group::make install" make install + echo "::endgroup::" - name: install libevent if: ${{ matrix.install_libevent == 'yes' }} run: sudo apt-get install libevent-dev