Appveyor: always log the compiler path and version

Implements 27449.
This commit is contained in:
teor 2018-09-05 10:17:39 +10:00
parent 0ea622aa3a
commit 90e038e732
No known key found for this signature in database
GPG Key ID: 10FEAA0E7075672A
2 changed files with 5 additions and 0 deletions

View File

@ -39,6 +39,8 @@ build_script:
Execute-Bash 'autoreconf -i' Execute-Bash 'autoreconf -i'
mkdir "${env:build}" mkdir "${env:build}"
Set-Location "${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 "../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"
Execute-Bash "V=1 make -j2 install" Execute-Bash "V=1 make -j2 install"

3
changes/ticket27449 Normal file
View File

@ -0,0 +1,3 @@
o Minor features (continuous integration):
- Log the compiler path and version during Appveyor builds.
Implements ticket 27449.