[openssl] master update

bernd.edlinger at hotmail.de bernd.edlinger at hotmail.de
Tue Jun 2 09:35:01 UTC 2020


The branch master has been updated
       via  d805b83166538907535862372c16ff6ceb648b21 (commit)
      from  23ccae80bd58adfe89e3e345414684eb82bdb531 (commit)


- Log -----------------------------------------------------------------
commit d805b83166538907535862372c16ff6ceb648b21
Author: Bernd Edlinger <bernd.edlinger at hotmail.de>
Date:   Thu May 28 11:20:50 2020 +0200

    Prevent extended tests run unexpectedly in appveyor
    
    Reason turns out that "git log -2" is picking up a merge
    commit and a random commit message from the master branch.
    
    Restore the expected behavior by using
    git log -1 $env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT
    
    Reviewed-by: Tomas Mraz <tmraz at fedoraproject.org>
    (Merged from https://github.com/openssl/openssl/pull/11981)

-----------------------------------------------------------------------

Summary of changes:
 appveyor.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/appveyor.yml b/appveyor.yml
index 949d6aad50..ccca8bb22c 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -46,7 +46,8 @@ before_build:
     - cd ..
     - ps: >-
         if (-not $env:APPVEYOR_PULL_REQUEST_NUMBER`
-            -or (&git log -2 | Select-String "\[extended tests\]") ) {
+            -or (&git log -1 $env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT |
+                 Select-String "\[extended tests\]") ) {
             $env:EXTENDED_TESTS="yes"
         }
 


More information about the openssl-commits mailing list