2024-01-03 16:32:30 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
end_to_end=$1
|
|
|
|
end_to_end_pr=$2
|
|
|
|
forgejo=$3
|
|
|
|
forgejo_ref=$4
|
|
|
|
|
|
|
|
cd $end_to_end
|
2024-08-08 15:53:12 +00:00
|
|
|
date >last-upgrade
|
2024-03-20 19:20:42 +00:00
|
|
|
organizations=lib/ORGANIZATIONS
|
2024-08-08 15:53:12 +00:00
|
|
|
if ! test -f $organizations; then
|
|
|
|
echo "$organizations file not found"
|
|
|
|
false
|
2024-03-20 19:20:42 +00:00
|
|
|
fi
|
|
|
|
#
|
2024-08-08 15:53:12 +00:00
|
|
|
# Inverse the order of lookup because the goal in the release built
|
|
|
|
# pipeline is to test the latest build, if available, instead of the
|
|
|
|
# stable version by the same version.
|
2024-03-20 19:20:42 +00:00
|
|
|
#
|
2024-08-08 15:53:12 +00:00
|
|
|
echo forgejo-integration forgejo-experimental forgejo >$organizations
|