CI: Fix full suite on core file changes (#60299)

This commit is contained in:
Franck Nijhof
2021-11-24 18:43:58 +01:00
committed by GitHub
parent fb40a5c0d1
commit 29f1abd2d5

View File

@@ -98,10 +98,12 @@ jobs:
test_full_suite="false" test_full_suite="false"
fi fi
# We need to run the full suite on certain branches # We need to run the full suite on certain branches.
# Or, in case core files are touched, for the full suite as well.
if [[ "${{ github.ref }}" == "refs/heads/dev" ]] \ if [[ "${{ github.ref }}" == "refs/heads/dev" ]] \
|| [[ "${{ github.ref }}" == "refs/heads/master" ]] \ || [[ "${{ github.ref }}" == "refs/heads/master" ]] \
|| [[ "${{ github.ref }}" == "refs/heads/rc" ]]; || [[ "${{ github.ref }}" == "refs/heads/rc" ]] \
|| [[ "${{ steps.core.outputs.any }}" == "true" ]];
then then
test_full_suite="true" test_full_suite="true"
fi fi