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/26 16:45:04 UTC

[commons-crypto] branch sebb-mac-test updated (4480466 -> bed4e18)

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

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


    from 4480466  Windows needs extra type parameter
     new cf3c5fd  Tidy
     new bed4e18  Debug QL fail

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              | 70 ++++++++++++++++++++++
 .../java/org/apache/commons/crypto/CryptoTest.java |  4 +-
 2 files changed, 72 insertions(+), 2 deletions(-)
 create mode 100644 .github/workflows/codeql-analysis.yml


[commons-crypto] 02/02: Debug QL fail

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit bed4e187dd3298c721349d118c327a9ad47ebc83
Author: Sebb <se...@apache.org>
AuthorDate: Sun Jun 26 17:44:56 2022 +0100

    Debug QL fail
---
 .github/workflows/codeql-analysis.yml | 70 +++++++++++++++++++++++++++++++++++
 1 file changed, 70 insertions(+)

diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
new file mode 100644
index 0000000..dd6531f
--- /dev/null
+++ b/.github/workflows/codeql-analysis.yml
@@ -0,0 +1,70 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+name: "CodeQL"
+
+on:
+  # allow direct trigger
+  workflow_dispatch:
+  
+jobs:
+  analyze:
+    name: Analyze
+    runs-on: ubuntu-latest
+    permissions:
+      actions: read
+      contents: read
+      security-events: write
+
+    strategy:
+      fail-fast: false
+      matrix:
+        language: [ 'cpp', 'java' ]
+        # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
+        # Learn more about CodeQL language support at https://git.io/codeql-language-support
+
+    steps:
+    - name: Checkout repository
+      uses: actions/checkout@v3
+
+    # Initializes the CodeQL tools for scanning.
+    - name: Initialize CodeQL
+      uses: github/codeql-action/init@v2
+      with:
+        languages: ${{ matrix.language }}
+        # If you wish to specify custom queries, you can do so here or in a config file.
+        # By default, queries listed here will override any specified in a config file.
+        # Prefix the list here with "+" to use these queries and those in the config file.
+        # queries: ./path/to/local/query, your-org/your-repo/queries@main
+
+    # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).
+    # If this step fails, then you should remove it and run the build manually (see below)
+#    - name: Autobuild
+#      uses: github/codeql-action/autobuild@v1
+
+    # ℹī¸ Command-line programs to run using the OS shell.
+    # 📚 https://git.io/JvXDl
+
+    # ✏ī¸ If the Autobuild fails above, remove it and uncomment the following three lines
+    #    and modify them (or add more) to build your code if your project
+    #    uses a compiled language
+
+    - name: Build with Maven
+      run: mvn package  --no-transfer-progress
+#      make bootstrap
+#      make release
+
+    - name: Perform CodeQL Analysis
+      uses: github/codeql-action/analyze@v2


[commons-crypto] 01/02: Tidy

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit cf3c5fd8882abc93203e017ed34de0416425f832
Author: Sebb <se...@apache.org>
AuthorDate: Sun Jun 26 17:19:54 2022 +0100

    Tidy
---
 src/test/java/org/apache/commons/crypto/CryptoTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/test/java/org/apache/commons/crypto/CryptoTest.java b/src/test/java/org/apache/commons/crypto/CryptoTest.java
index 84e9471..59d1bd6 100644
--- a/src/test/java/org/apache/commons/crypto/CryptoTest.java
+++ b/src/test/java/org/apache/commons/crypto/CryptoTest.java
@@ -21,7 +21,6 @@ package org.apache.commons.crypto;
 import static org.junit.jupiter.api.Assertions.assertNotNull;
 import static org.junit.jupiter.api.Assertions.assertTrue;
 
-// import org.junit.jupiter.api.Disabled;
 import org.junit.jupiter.api.Test;
 
 public class CryptoTest {
@@ -49,7 +48,6 @@ public class CryptoTest {
 	}
 
 	@Test
-	// @Disabled("Mac64 failure with OpenSSL 1.1.1g")
 	public void testMain() throws Throwable {
 		try {
 			Crypto.main(new String[0]);
@@ -58,6 +56,7 @@ public class CryptoTest {
 			System.err.println("Special case; LoadingError = " + loadingError);
 			throw loadingError != null ? loadingError : e;
 		}
+    assertTrue(true, "Completed OK");
 	}
 
 	@Test
@@ -66,6 +65,7 @@ public class CryptoTest {
 		if (loadingError != null) {
 			throw loadingError;
 		}
+    assertTrue(true, "Completed OK");
 	}
 
 }