ci: do not run opensource edition test for lib-ee apps

This commit is contained in:
Zaiming (Stone) Shi 2022-08-13 21:04:48 +02:00
parent c93829c784
commit d63d6b5f27
1 changed files with 9 additions and 2 deletions

View File

@ -178,10 +178,17 @@ jobs:
make clean make clean
make "${WHICH_APP}-ct" make "${WHICH_APP}-ct"
else else
echo "no_common_test_run_for_app ${WHICH_APP}-ct" echo "skip_common_test_run_for_app ${WHICH_APP}-ct"
fi fi
else else
make "${WHICH_APP}-ct" case "$WHICH_APP" in
lib-ee/*)
echo "skip_opensource_edition_test_for_lib-ee"
;;
*)
make "${WHICH_APP}-ct"
;;
esac
fi fi
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with: