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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,10 +98,12 @@ jobs:
test_full_suite="false"
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" ]] \
|| [[ "${{ github.ref }}" == "refs/heads/master" ]] \
|| [[ "${{ github.ref }}" == "refs/heads/rc" ]];
|| [[ "${{ github.ref }}" == "refs/heads/rc" ]] \
|| [[ "${{ steps.core.outputs.any }}" == "true" ]];
then
test_full_suite="true"
fi