Add interoperability test suite to CI

This commit is contained in:
M. Thiercelin 2023-02-20 10:37:38 +01:00 committed by marinthiercelin
parent 503727334c
commit b7193f64e4
5 changed files with 224 additions and 0 deletions

12
.github/test-suite/prepare_config.sh vendored Executable file
View file

@ -0,0 +1,12 @@
CONFIG_TEMPLATE=$1
CONFIG_OUTPUT=$2
GOSOP_BRANCH=$3
GOSOP_MAIN=$4
cat $CONFIG_TEMPLATE \
| sed "s@__GOSOP_BRANCH__@${GOSOP_BRANCH}@g" \
| sed "s@__GOSOP_MAIN__@${GOSOP_MAIN}@g" \
| sed "s@__SQOP__@${SQOP}@g" \
| sed "s@__GPGME_SOP__@${GPGME_SOP}@g" \
| sed "s@__SOP_OPENPGPJS__@${SOP_OPENPGPJS}@g" \
| sed "s@__RNP_SOP__@${RNP_SOP}@g" \
> $CONFIG_OUTPUT