You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2022/06/13 16:50:49 UTC

[commons-crypto] branch master updated: Keep looking for the openssl header files

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-crypto.git


The following commit(s) were added to refs/heads/master by this push:
     new 37d6185  Keep looking for the openssl header files
37d6185 is described below

commit 37d618579cd1533bb8067a4fc64b338a39e773b3
Author: Sebb <se...@apache.org>
AuthorDate: Mon Jun 13 17:50:42 2022 +0100

    Keep looking for the openssl header files
---
 .github/workflows/maven_win.yml | 20 ++++++++------------
 1 file changed, 8 insertions(+), 12 deletions(-)

diff --git a/.github/workflows/maven_win.yml b/.github/workflows/maven_win.yml
index e757834..838983d 100644
--- a/.github/workflows/maven_win.yml
+++ b/.github/workflows/maven_win.yml
@@ -15,6 +15,10 @@
 
 name: Java CI Win
 
+# This is a temporary workflow for use in debugging the Windows build
+# At present it fails to find the header file openssl/aes.h
+# Not clear yet if that is missing or in an unexpected place.
+
 on:
   workflow_dispatch:
 
@@ -29,16 +33,6 @@ jobs:
         os: [windows-latest]
         java: [ 8 ]
         experimental: [false]
-#        include:
-#          - java: 18-ea
-#            os: ubuntu-latest
-#            experimental: true        
-#          - java: 18-ea
-#            os: windows-latest
-#            experimental: true        
-#          - java: 18-ea
-#            os: macos-latest
-#            experimental: true        
       fail-fast: false
         
     steps:
@@ -59,8 +53,10 @@ jobs:
     - name: Find missing file
       run: |
         cd \
-        ruby -rfind -e "Find.find('.').each{|x| puts x if x.end_with? 'openssl'}"
+        dir
+        ruby -rfind -e "Find.find('.').each{|x| puts x if x.include? 'openssl'}"
         d:
-        ruby -rfind -e "Find.find('.').each{|x| puts x if x.end_with? 'openssl'}"
+        dir
+        ruby -rfind -e "Find.find('.').each{|x| puts x if x.include? 'openssl'}"
     # - name: Build with Maven
     #   run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false