Skip to content
Snippets Groups Projects
Commit 38673db2 authored by jurgenhaas's avatar jurgenhaas
Browse files

Merge branch 'develop' into 'main'

Merging develop into main

See merge request !19
parents 5e00d9fb c293521f
No related branches found
Tags v2.2.9
1 merge request!19Merging develop into main
Pipeline #550112 passed
......@@ -4,6 +4,7 @@ include:
file: '/tagrelease.yml'
variables:
SUPPORT_LATEST_TAG: 1
VERSION: ${CI_COMMIT_TAG}
before_script:
......
......@@ -90,7 +90,7 @@ else
echo "Find project ID from remote URL ..."
# shellcheck disable=SC2001
path="$(echo "$path" | sed -e 's,\..*,,g')"
gitlab 200 GET "projects?search_namespaces=1&search=$path"
gitlab 200 GET "projects?archived=0&search_namespaces=1&search=$path"
PRJID=$(echo "$result" | jq -r .[0]."id")
if [[ "a${PRJID}a" == "aa" ]]; then
echo "No project found"
......@@ -104,10 +104,28 @@ fi
echo "Find pipeline trigger token ..."
gitlab 200 GET projects/"$PRJID"/triggers
TRIGGERTOKEN=$(echo "$result" | jq -r .[0]."token")
if [[ "a${TRIGGERTOKEN}a" == "aa" ]]; then
echo "No trigger token found"
exit 7
TRIGGERTOKEN=none
i=0
while [ $i -ge 0 ]
do
TOKEN=$(echo "$result" | jq -r .[$i]."token")
if [[ "$TOKEN" == "null" ]]; then
i=-1
elif [[ ${#TOKEN} -eq 4 ]]; then
((i=i+1))
else
TRIGGERTOKEN=$TOKEN
i=-1
fi
done
if [[ "$TRIGGERTOKEN" == "none" ]] || [[ "a${TRIGGERTOKEN}a" == "aa" ]]; then
echo "No token found, creating one ..."
gitlab 201 POST projects/"$PRJID"/triggers --data "description=Created by L3D"
TRIGGERTOKEN=$(echo "$result" | jq -r ."token")
if [[ "$TRIGGERTOKEN" == "none" ]] || [[ "a${TRIGGERTOKEN}a" == "aa" ]]; then
echo "No trigger token found and can not create one"
exit 7
fi
fi
echo "Trigger pipeline ..."
......
#!/bin/bash
export $(cat .env | xargs)
docker run --rm -v $(php /usr/local/bin/volume.php /app) ghcr.io/phpstan/phpstan "$@"
EC=$?
exit $EC
#!/bin/bash
docker compose exec ${LAKEDROPS_DEV_DC_OPTIONS} php /var/www/html/vendor/bin/rector "$@"
EC=$?
exit $EC
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment