end-to-end/end-to-end.sh
Twenty Panda 96f91063c9
All checks were successful
/ build (pull_request) Successful in 2m18s
/ packages (pull_request) Successful in 2m43s
/ actions (pull_request) Successful in 19m36s
/ actions-docs (map[branch:next forgejo:https://codeberg.org repo:forgejo-experimental/forgejo version:7]) (pull_request) Has been skipped
/ actions-docs (map[forgejo:https://codeberg.org repo:forgejo/forgejo version:1.21]) (pull_request) Has been skipped
/ upgrade and storage (pull_request) Successful in 11m33s
merge actions test into end-to-end.sh
* replace the high level test running actions tests with end-to-end.sh
* set DOMAIN to the IP instead of 127.0.0.1 for runner <-> forgejo communications
* move forgejo_cli from a function to a file so that it can be used by forgejo-runner.sh
* keep the documentation updates workflows separate because they need to open one PR per version
2024-03-20 13:42:44 +01:00

25 lines
558 B
Bash
Executable file

#!/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
#
SELF_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
SELF="${BASH_SOURCE[0]}"
source $SELF_DIR/lib/lib.sh
source $SELF_DIR/actions/actions.sh
source $SELF_DIR/forgejo/fixtures.sh
source $SELF_DIR/storage/storage.sh
source $SELF_DIR/upgrade/upgrade.sh
source $SELF_DIR/packages/packages.sh
"$@"