Browse Source

Appveyor: always log the compiler path and version

Implements 27449.
teor 5 years ago
parent
commit
90e038e732
2 changed files with 5 additions and 0 deletions
  1. 2 0
      .appveyor.yml
  2. 3 0
      changes/ticket27449

+ 2 - 0
.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"

+ 3 - 0
changes/ticket27449

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