setup-forgejo/testdata/run.sh
2023-03-25 14:35:17 +01:00

67 lines
1.4 KiB
Bash
Executable file

#!/bin/bash
set -ex
DATA=$(dirname $0)
DIR=$(mktemp -d)
#trap "rm -fr $DIR" EXIT
function check_status() {
local forgejo="$1"
local repo="$2"
local sha="$3"
if ! which jq > /dev/null ; then
apt-get install -y -qq jq
fi
local state=$(curl --fail -sS "$forgejo/api/v1/repos/$repo/commits/$sha/status" | jq --raw-output .state)
echo $state
test "$state" != "" -a "$state" != "pending" -a "$state" != "running" -a "$state" != "null"
}
function wait_success() {
local forgejo="$1"
local repo="$2"
local sha="$3"
for i in $(seq 180); do
if check_status "$forgejo" "$repo" "$sha"; then
break
fi
sleep 1
done
test "$(check_status "$forgejo" "$repo" "$sha")" = "success"
}
function push() {
local forgejo="$1"
local owner="$2"
local workflow="$3"
mkdir -p $DIR/.forgejo/workflows
cp $DATA/$workflow.yml $DIR/.forgejo/workflows
(
cd $DIR
git init
git checkout -b main
git config user.email root@example.com
git config user.name username
git add .
git commit -m 'initial commit'
git remote add origin $forgejo/$owner/$workflow
git push --force -u origin main
git rev-parse HEAD > SHA
)
}
function main() {
local forgejo="${1:-http://root:admin1234@$(forgejo-ip):3000}"
local owner="${2:-root}"
local workflow="${3:-demo}"
push "$forgejo" "$owner" "$workflow"
wait_success "$forgejo" "$owner/$workflow" $(cat $DIR/SHA)
}
"$@"