Resolve #3397129 "Opt in other branches"
2 unresolved threads
Closes #3397129
Merge request reports
Activity
added 1 commit
164 164 composer: 165 165 extends: .composer-base 166 166 167 composer (previous major): 168 extends: .composer-base 169 rules: 170 - if: '$SKIP_PHPUNIT == "1"' 171 when: never 172 - if: '$OPT_IN_TEST_PREVIOUS_MAJOR == "1"' 173 variables: 174 _TARGET_PHP: '7.4' changed this line in version 2 of the diff
415 443 # An include of the code above, for easy reuse. See https://docs.gitlab.com/ee/ci/yaml/#extends. 416 444 extends: .phpunit-base 417 445 446 phpunit (previous major): 447 extends: phpunit 448 rules: 449 - if: '$SKIP_PHPUNIT == "1"' 450 when: never 451 - if: '$OPT_IN_TEST_PREVIOUS_MAJOR == "1"' 452 needs: 453 - "composer (previous major)" 454 variables: 455 _TARGET_PHP: "7.4" changed this line in version 2 of the diff
Please register or sign in to reply