[SCM] postgis.net branch check-md5 updated. clarity-final-95-g40f52b6

git at osgeo.org git at osgeo.org
Fri May 31 05:51:20 PDT 2024


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "postgis.net".

The branch, check-md5 has been updated
  discards  540a9002ff7a4ae3d2411955d315a94a7a7602b6 (commit)
       via  40f52b686fcf293b857717b9a1d29e11803b5f32 (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (540a9002ff7a4ae3d2411955d315a94a7a7602b6)
            \
             N -- N -- N (40f52b686fcf293b857717b9a1d29e11803b5f32)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 40f52b686fcf293b857717b9a1d29e11803b5f32
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri May 31 14:44:13 2024 +0200

    Add md5 checker step

diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml
index 3bb9d76..3779a67 100644
--- a/.woodpecker/build.yml
+++ b/.woodpecker/build.yml
@@ -1,9 +1,10 @@
-when:
-  event: [push, pull_request]
-
 steps:
 
   build:
     image: hugomods/hugo
     commands:
       - hugo
+
+  check-md5:
+    commands:
+      - utils/check_releases_md5.sh
diff --git a/utils/check_releases_md5.sh b/utils/check_releases_md5.sh
new file mode 100755
index 0000000..fef5052
--- /dev/null
+++ b/utils/check_releases_md5.sh
@@ -0,0 +1,34 @@
+#!/bin/sh
+
+WORKDIR=$PWD/releases-check
+API=https://git.osgeo.org/gitea/api/v1
+DOWNLOAD_BASE=https://download.osgeo.org/postgis/source
+MD5_BASE=https://postgis.net/stuff
+CONFIG=$(cd $(dirname $0)/../; pwd)/config.json
+
+mkdir -p ${WORKDIR}
+cd ${WORKDIR}
+
+echo "Fetching list of published releases"
+jq -r '.params.postgis.releases[] | select( .is_dev != true ) | .tag' \
+  ${CONFIG} > checked_releases.txt
+
+while read REL; do
+  relname=postgis-${REL}.tar.gz
+  md5name=${relname}.md5
+
+  echo -n "Checking ${relname} ... "
+  curl -s ${DOWNLOAD_BASE}/${relname} -o ${relname} || {
+    echo "unable to download ${relname} from ${DOWNLOAD_BASE}"
+    continue
+  }
+  curl -s ${MD5_BASE}/${md5name} -o ${md5name} || {
+    echo "unable to download ${md5name} from ${MD5_BASE}"
+    continue
+  }
+  md5sum ${relname} | diff - ${md5name} > /dev/null 2>&1 || {
+    echo "MD5 mismatch"
+    continue
+  }
+  echo "OK"
+done < checked_releases.txt

-----------------------------------------------------------------------

Summary of changes:
 .woodpecker/build.yml       |  2 +-
 utils/check_releases_md5.sh | 14 ++++----------
 2 files changed, 5 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
postgis.net


More information about the postgis-tickets mailing list