]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Appveyor: always log the compiler path and version
authorteor <teor@torproject.org>
Wed, 5 Sep 2018 00:17:39 +0000 (10:17 +1000)
committerteor <teor@torproject.org>
Wed, 5 Sep 2018 00:50:17 +0000 (10:50 +1000)
Implements 27449.

.appveyor.yml
changes/ticket27449 [new file with mode: 0644]

index d1d8d7c45be1062f264f39f7b60e06b7412df191..7cc86004bf5a58ec498894d1f60042b15f5cef2a 100644 (file)
@@ -39,6 +39,8 @@ build_script:
             Execute-Bash 'autoreconf -i'\r
             mkdir "${env:build}"\r
             Set-Location "${env:build}"\r
+            Execute-Bash "which ${env:target}-gcc"\r
+            Execute-Bash "${env:target}-gcc --version"\r
             Execute-Bash "../configure --prefix=/${env:compiler_path} --build=${env:target} --host=${env:target} --disable-asciidoc --enable-fatal-warnings --with-openssl-dir=${env:openssl_path}"\r
             Execute-Bash "V=1 make -j2"\r
             Execute-Bash "V=1 make -j2 install"\r
diff --git a/changes/ticket27449 b/changes/ticket27449
new file mode 100644 (file)
index 0000000..2a0984c
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor features (continuous integration):
+    - Log the compiler path and version during Appveyor builds.
+      Implements ticket 27449.