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/12 22:08:12 UTC

[commons-crypto] branch master updated (26c7767 -> cdfa399)

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

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


    from 26c7767  Looks like Windows has yet to be tried
     new f2ceaaa  Don't trigger on changes to maven GH action
     new cdfa399  Trying to fix Windows build

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/codeql-analysis.yml |  4 ++++
 .github/workflows/coverage.yml        |  8 +++++++-
 .github/workflows/maven.yml           | 11 +++++++++--
 3 files changed, 20 insertions(+), 3 deletions(-)


[commons-crypto] 01/02: Don't trigger on changes to maven GH action

Posted by se...@apache.org.
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

commit f2ceaaa72c31da66e7eb5a4a96d20ffb35e31a75
Author: Sebb <se...@apache.org>
AuthorDate: Sun Jun 12 23:01:57 2022 +0100

    Don't trigger on changes to maven GH action
---
 .github/workflows/codeql-analysis.yml | 4 ++++
 .github/workflows/coverage.yml        | 8 +++++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index e2d3a1e..c1ea60e 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -17,8 +17,12 @@ name: "CodeQL"
 
 on:
   push:
+    paths-ignore:
+      - '**/workflows/maven.yml'
     branches: [ master ]
   pull_request:
+    paths-ignore:
+      - '**/workflows/maven.yml'
     # The branches below must be a subset of the branches above
     branches: [ master ]
   schedule:
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml
index 68d62f6..115745b 100644
--- a/.github/workflows/coverage.yml
+++ b/.github/workflows/coverage.yml
@@ -15,7 +15,13 @@
 
 name: Coverage
 
-on: [push, pull_request]
+on: 
+  push:
+    paths-ignore:
+      - '**/workflows/maven.yml'
+  pull_request:
+    paths-ignore:
+      - '**/workflows/maven.yml'
 
 permissions:
   contents: read


[commons-crypto] 02/02: Trying to fix Windows build

Posted by se...@apache.org.
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

commit cdfa3991bb9f1439821f1b008996ca78dcb6ad94
Author: Sebb <se...@apache.org>
AuthorDate: Sun Jun 12 23:07:59 2022 +0100

    Trying to fix Windows build
---
 .github/workflows/maven.yml | 11 +++++++++--
 1 file changed, 9 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index b1099cd..861a56e 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -24,8 +24,11 @@ jobs:
     continue-on-error: ${{ matrix.experimental }}
     strategy:
       matrix:
-        os: [macos-latest, ubuntu-latest, windows-latest]
-        java: [ 8, 11, 17 ]
+        # os: [macos-latest, ubuntu-latest, windows-latest]
+        # java: [ 8, 11, 17 ]
+        # Trying to fix macOS build
+        os: [macos-latest]
+        java: [ 8 ]
         experimental: [false]
 #        include:
 #          - java: 18-ea
@@ -52,5 +55,9 @@ jobs:
       with:
         distribution: 'temurin'
         java-version: ${{ matrix.java }}
+    - name: OpenSSL version
+      run: openssl version
+    - name: Find missing file
+      run: find /usr -name aes.h
     - name: Build with Maven
       run: mvn -V --file pom.xml --no-transfer-progress -DtrimStackTrace=false