scripts/bw-compatibility-test: add backwards compat test

In this commit, a new backwards compatibility test is added. See the
added README.md file in this commit for all the info.
This commit is contained in:
Elle Mouton
2025-02-20 20:36:47 -03:00
parent e3d9fcb5ac
commit f0d4ea10a2
8 changed files with 835 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#!/bin/bash
# The execute.sh file can be used to call any helper functions directly
# from the command line. For example:
# $ ./execute.sh compose-up
# DIR is set to the directory of this script.
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
source "$DIR/.env"
source "$DIR/compose.sh"
source "$DIR/network.sh"
CMD=$1
shift
$CMD "$@"