ci: do not run opensource edition test for lib-ee apps
This commit is contained in:
parent
c93829c784
commit
d63d6b5f27
|
@ -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
|
||||||
|
case "$WHICH_APP" in
|
||||||
|
lib-ee/*)
|
||||||
|
echo "skip_opensource_edition_test_for_lib-ee"
|
||||||
|
;;
|
||||||
|
*)
|
||||||
make "${WHICH_APP}-ct"
|
make "${WHICH_APP}-ct"
|
||||||
|
;;
|
||||||
|
esac
|
||||||
fi
|
fi
|
||||||
- uses: actions/upload-artifact@v3
|
- uses: actions/upload-artifact@v3
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue