Compare commits

..

7 Commits

Author SHA1 Message Date
Richard Holland
87bbf5efc0 add additional expects to ensure map carry-over in test suit 2026-06-16 16:30:20 +10:00
Richard Holland
888d35b8dc Merge branch 'dev' into fixhookmap 2026-06-16 15:31:32 +10:00
Richard Holland
7a0059ae80 Merge branch 'dev' into fixhookmap 2026-06-16 13:57:42 +10:00
Richard Holland
d58cddf554 test cases for hookmap fix 2026-06-12 16:20:47 +10:00
Richard Holland
632df895d4 use pair for consistency 2026-06-05 15:59:57 +10:00
Richard Holland
e9a2e71124 add namespaces to the grants cache 2026-06-05 15:43:38 +10:00
Richard Holland
1b6da60399 initial version of hookmap fix, compiling but needs tests 2026-06-05 11:37:18 +10:00

View File

@@ -95,16 +95,8 @@ if [[ "$4" == "" ]]; then
echo "Non GH, local building, no Action runner magic"
else
# GH Action, runner
if [[ "$(git rev-parse --abbrev-ref HEAD)" == "release" ]]; then
echo "building on the release branch... placing it in builds/candidate"
mkdir /data/builds/candidate
cp /io/release-build/xahaud /data/builds/candidate/$(date +%Y).$(date +%-m).$(date +%-d)-$(git rev-parse --abbrev-ref HEAD)+$4
cp /io/release-build/release.info /data/builds/candidate/$(date +%Y).$(date +%-m).$(date +%-d)-$(git rev-parse --abbrev-ref HEAD)+$4.releaseinfo
else
echo "building non-release branch, placing it in builds root"
cp /io/release-build/xahaud /data/builds/$(date +%Y).$(date +%-m).$(date +%-d)-$(git rev-parse --abbrev-ref HEAD)+$4
cp /io/release-build/release.info /data/builds/$(date +%Y).$(date +%-m).$(date +%-d)-$(git rev-parse --abbrev-ref HEAD)+$4.releaseinfo
fi
cp /io/release-build/xahaud /data/builds/$(date +%Y).$(date +%-m).$(date +%-d)-$(git rev-parse --abbrev-ref HEAD)+$4
cp /io/release-build/release.info /data/builds/$(date +%Y).$(date +%-m).$(date +%-d)-$(git rev-parse --abbrev-ref HEAD)+$4.releaseinfo
echo "Published build to: http://build.xahau.tech/"
echo $(date +%Y).$(date +%-m).$(date +%-d)-$(git rev-parse --abbrev-ref HEAD)+$4
fi