commit 90e038e7321deefb93b75fc95e6807e2d3482ca6 Author: teor teor@torproject.org Date: Wed Sep 5 10:17:39 2018 +1000
Appveyor: always log the compiler path and version
Implements 27449. --- .appveyor.yml | 2 ++ changes/ticket27449 | 3 +++ 2 files changed, 5 insertions(+)
diff --git a/.appveyor.yml b/.appveyor.yml index d1d8d7c45..7cc86004b 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 000000000..2a0984c09 --- /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.
tor-commits@lists.torproject.org