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/22 16:07:00 UTC

[commons-crypto] branch sebb-docker updated: Show generated native files

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

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


The following commit(s) were added to refs/heads/sebb-docker by this push:
     new 6ea4b69  Show generated native files
6ea4b69 is described below

commit 6ea4b69b3a164ff8c0f07f23d810ea6c489784bc
Author: Sebb <se...@apache.org>
AuthorDate: Wed Jun 22 17:06:50 2022 +0100

    Show generated native files
---
 src/docker/build.sh         | 3 +++
 src/docker/build_linux32.sh | 6 +++++-
 2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/docker/build.sh b/src/docker/build.sh
index bd863f2..e6b718d 100755
--- a/src/docker/build.sh
+++ b/src/docker/build.sh
@@ -41,3 +41,6 @@ mvn -DskipTests -Drat.skip process-classes -P linux-arm
 mvn -DskipTests -Drat.skip process-classes -P win32
 
 # see separate script for optional linux32 build
+
+# Show generated files
+find target/classes/org/apache/commons/crypto/native -type f -ls
diff --git a/src/docker/build_linux32.sh b/src/docker/build_linux32.sh
index e7f6e73..4077bea 100755
--- a/src/docker/build_linux32.sh
+++ b/src/docker/build_linux32.sh
@@ -28,4 +28,8 @@ cp /usr/include/i386-linux-gnu/openssl/opensslconf.h /usr/include/openssl
 
 # Needed for linux32, but causes linux 64 builds to fail
 apt-get --assume-yes install g++-multilib
-mvn -DskipTests package -P linux32
\ No newline at end of file
+
+mvn -DskipTests package -P linux32
+
+# Show generated files
+find target/classes/org/apache/commons/crypto/native -type f -ls