2024-03-17 11:58:02 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
#
|
|
|
|
# Debug loop from the source tree:
|
|
|
|
#
|
|
|
|
# ./end-to-end.sh dependencies
|
|
|
|
# ./end-to-end.sh build_all
|
|
|
|
# VERBOSE=true ./end-to-end.sh test_downgrade_1.20.2_fails
|
|
|
|
#
|
|
|
|
# Everything happens in /tmp/forgejo-end-to-end
|
|
|
|
#
|
|
|
|
|
2024-08-07 08:31:33 +02:00
|
|
|
SELF_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
2024-03-17 11:58:02 +01:00
|
|
|
SELF="${BASH_SOURCE[0]}"
|
|
|
|
source $SELF_DIR/lib/lib.sh
|
|
|
|
|
2024-06-04 16:30:48 +02:00
|
|
|
source $SELF_DIR/federation/federation.sh
|
2024-03-20 11:51:46 +01:00
|
|
|
source $SELF_DIR/actions/actions.sh
|
2024-03-17 16:26:17 +01:00
|
|
|
source $SELF_DIR/forgejo/fixtures.sh
|
|
|
|
source $SELF_DIR/storage/storage.sh
|
|
|
|
source $SELF_DIR/upgrade/upgrade.sh
|
2024-03-17 11:58:02 +01:00
|
|
|
source $SELF_DIR/packages/packages.sh
|
|
|
|
|
|
|
|
"$@"
|