From: teor Date: Wed, 5 Sep 2018 00:17:39 +0000 (+1000) Subject: Appveyor: always log the compiler path and version X-Git-Tag: tor-0.3.4.8~17^2^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90e038e7321deefb93b75fc95e6807e2d3482ca6;p=thirdparty%2Ftor.git Appveyor: always log the compiler path and version Implements 27449. --- diff --git a/.appveyor.yml b/.appveyor.yml index d1d8d7c45b..7cc86004bf 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -39,6 +39,8 @@ build_script: Execute-Bash 'autoreconf -i' mkdir "${env:build}" Set-Location "${env:build}" + Execute-Bash "which ${env:target}-gcc" + Execute-Bash "${env:target}-gcc --version" Execute-Bash "../configure --prefix=/${env:compiler_path} --build=${env:target} --host=${env:target} --disable-asciidoc --enable-fatal-warnings --with-openssl-dir=${env:openssl_path}" Execute-Bash "V=1 make -j2" Execute-Bash "V=1 make -j2 install" diff --git a/changes/ticket27449 b/changes/ticket27449 new file mode 100644 index 0000000000..2a0984c09c --- /dev/null +++ b/changes/ticket27449 @@ -0,0 +1,3 @@ + o Minor features (continuous integration): + - Log the compiler path and version during Appveyor builds. + Implements ticket 27449.