This is an automated email from the ASF dual-hosted git repository.
olabusayoT pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil.git
The following commit(s) were added to refs/heads/main by this push:
new e8ef2e819 Update Inno Setup installation in `release-candidate.yml`
e8ef2e819 is described below
commit e8ef2e81995bbf326c48f1973ea106b124e98afd
Author: olabusayoT <[email protected]>
AuthorDate: Tue Jun 23 20:50:14 2026 -0400
Update Inno Setup installation in `release-candidate.yml`
- Switch to GitHub-hosted Inno Setup binaries.
- Replace SHA-512 checksum validation with SHA-256.
- Update version tag references for consistency.
---
.github/workflows/release-candidate.yml | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/release-candidate.yml
b/.github/workflows/release-candidate.yml
index e337df315..dd572de53 100644
--- a/.github/workflows/release-candidate.yml
+++ b/.github/workflows/release-candidate.yml
@@ -63,10 +63,12 @@ jobs:
sudo apt-get install -y libmxml-dev rpm wine32 winetricks
sudo locale-gen $LANG
+ INNO_SETUP_TAG="6_4_1"
INNO_SETUP_EXE="innosetup-6.4.1.exe"
-
EXPECTED_SHA=5dfc9999e2feafa28754baaf80cf73ac96414228b94a1132a919554a822c892810197305d9355885b9ac408c214691cd45279fc2df3a891fbebc4f8eb86bac87
- curl -L https://files.jrsoftware.org/is/6/$INNO_SETUP_EXE -o
$INNO_SETUP_EXE
- echo "$EXPECTED_SHA $INNO_SETUP_EXE" | sha512sum --quiet -c -
+
EXPECTED_SHA=f41760e1f1ae15d2089bb6ab162e21720b92ae7506ed70667b39200063d68e34
+ curl -L
https://github.com/jrsoftware/issrc/releases/download/is-$INNO_SETUP_TAG/$INNO_SETUP_EXE
-o $INNO_SETUP_EXE
+ echo "$EXPECTED_SHA $INNO_SETUP_EXE" | sha256sum --quiet -c -
+
winetricks -q win10
xvfb-run wine $INNO_SETUP_EXE /VERYSILENT /SUPPRESSMSGBOXES /TASKS=
'/DIR=C:\\Program Files (x86)\\Inno Setup 6'
rm $INNO_SETUP_EXE