You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2019/11/01 14:45:31 UTC

[plc4x] branch feature/reproducible-builds updated: - Added a script to create an archive with a hopefully reproducible build output

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

cdutz pushed a commit to branch feature/reproducible-builds
in repository https://gitbox.apache.org/repos/asf/plc4x.git


The following commit(s) were added to refs/heads/feature/reproducible-builds by this push:
     new 4c80339  - Added a script to create an archive with a hopefully reproducible build output
4c80339 is described below

commit 4c8033996c40322fdf27bcd970856dc962deb765
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Fri Nov 1 15:45:25 2019 +0100

    - Added a script to create an archive with a hopefully reproducible build output
---
 build-reproducible.sh | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 65 insertions(+)

diff --git a/build-reproducible.sh b/build-reproducible.sh
new file mode 100755
index 0000000..7b7bd24
--- /dev/null
+++ b/build-reproducible.sh
@@ -0,0 +1,65 @@
+#!/bin/bash
+# ----------------------------------------------------------------------------
+# 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.
+# ----------------------------------------------------------------------------
+
+# Run a standard build
+function build() {
+  echo "Building ..."
+  mvn -U -P apache-release,with-boost,with-java,with-dotnet,with-cpp,with-python,with-proxies,with-sandbox,with-logstash -DaltDeploymentRepository=snapshot-repo::default::file:./local-snapshots-dir clean deploy
+  echo "Done"
+}
+
+# Just remove all the metadata information and all the hashes and signatures
+function clean() {
+  echo "Cleaning ..."
+  cd local-snapshots-dir || exit
+  find ./ -name "*.asc" -exec rm -rf {} \;
+  find ./ -name "*.md5" -exec rm -rf {} \;
+  find ./ -name "*.sha1" -exec rm -rf {} \;
+  find ./ -name "maven-metadata.xml" -exec rm -rf {} \;
+  find ./ -name "maven-metadata.xml.md5" -exec rm -rf {} \;
+  find ./ -name "maven-metadata.xml.sha1" -exec rm -rf {} \;
+  cd ..
+  echo "Done"
+  pwd
+}
+
+# Rename all snapshot files to not contain the timestamps
+function renameArtifacts() {
+  echo "Renaming ..."
+  cd local-snapshots-dir || exit
+  # Remove the timestamp from the file-names
+  find . -type f | rename 's/-\d{8}\.\d{6}-\d{1,2}//'
+  cd ..
+  echo "Done"
+  pwd
+}
+
+# Package the remaiing files into one tgz archive
+function packageDirectory() {
+  echo "Packaging ..."
+  tar -cvf reproducible-build-candidate.tgz local-snapshots-dir/
+  echo "Done"
+  pwd
+}
+
+build
+clean
+renameArtifacts
+packageDirectory