commit 90e038e7321deefb93b75fc95e6807e2d3482ca6
parent 0ea622aa3a678f19759a42e9521a259ef4bcf5a4
Author: teor <teor@torproject.org>
Date: Wed, 5 Sep 2018 10:17:39 +1000
Appveyor: always log the compiler path and version
Implements 27449.
Diffstat:
2 files changed, 5 insertions(+), 0 deletions(-)
diff --git 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
@@ -0,0 +1,3 @@
+ o Minor features (continuous integration):
+ - Log the compiler path and version during Appveyor builds.
+ Implements ticket 27449.