ACMS-4333: Fixed the bug reported in D11. #544
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: drupal-recommended-settings CI | |
on: | |
# schedule: | |
# "At minute 0 past hour 4 and 8 UTC." | |
# - cron: '0 4,8 * * *' | |
push: | |
branches: [ develop, main, ACMS* ] | |
paths-ignore: | |
- README.md | |
pull_request: | |
branches: [ develop ] | |
paths-ignore: | |
- README.md | |
env: | |
ORCA_SUT_NAME: acquia/drupal-recommended-settings | |
ORCA_SUT_BRANCH: develop | |
ORCA_VERSION: ^4 | |
ORCA_PACKAGES_CONFIG_ALTER: ../drupal-recommended-settings/tests/packages_alter.yml | |
ORCA_ENABLE_NIGHTWATCH: "FALSE" | |
ORCA_PHPCS_STANDARD: AcquiaPHP | |
COMPOSER_PROCESS_TIMEOUT: 1800 | |
jobs: | |
STATIC_CODE_ANALYSIS: | |
name: "Static Code Analysis" | |
runs-on: ubuntu-latest | |
env: | |
ORCA_JOB: STATIC_CODE_ANALYSIS | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.3 | |
coverage: xdebug | |
- name: Download ORCA | |
run: composer create-project --no-dev --ignore-platform-req=php acquia/orca ../orca "$ORCA_VERSION" -n | |
- name: Before Install | |
run: ../orca/bin/ci/before_install.sh | |
- name: Install | |
run: ../orca/bin/ci/install.sh | |
- name: Before script | |
run: ../orca/bin/ci/before_script.sh | |
- name: Script | |
run: ../orca/bin/ci/script.sh | |
- name: After script | |
run: | | |
../orca/bin/ci/after_success.sh | |
../orca/bin/ci/after_failure.sh | |
../orca/bin/ci/after_script.sh | |
PHPUNIT_TESTS: | |
name: "Run PHPUnit tests for CORE: ${{ matrix.orca-job }}, PHP: ${{ matrix.php-version }}" | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
php-version: | |
- 8.1 | |
- 8.3 | |
orca-job: | |
- ISOLATED_TEST_ON_CURRENT | |
# - INTEGRATED_TEST_ON_PREVIOUS_MINOR | |
- INTEGRATED_TEST_ON_LATEST_LTS | |
exclude: | |
# - orca-job: INTEGRATED_TEST_ON_PREVIOUS_MINOR | |
# php-version: 8.1 | |
- orca-job: ISOLATED_TEST_ON_CURRENT | |
php-version: 8.1 | |
env: | |
ORCA_JOB: ${{ matrix.orca-job }} | |
CI: TRUE | |
ORCA_TEST_BOOTSTRAP_FILE: ${{ github.workspace }}/tests/src/bootstrap.php | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: xdebug | |
ini-values: assert.active=1, assert.exception=1, zend.assertions=1 | |
- name: Download ORCA | |
run: | | |
composer create-project --no-dev --ignore-platform-req=php acquia/orca ../orca "$ORCA_VERSION" -n | |
curl https://gist.githubusercontent.com/vishalkhode1/ed98372190aac83d7be6c5cc27f2303d/raw/custom-tests-bootstrap.patch | git -C ../orca apply | |
- name: Before Install | |
run: ../orca/bin/ci/before_install.sh | |
- name: Install | |
run: ../orca/bin/ci/install.sh | |
- name: Before Script | |
run: ../orca/bin/ci/before_script.sh | |
- name: Script | |
run: ./tests/scripts/ci/script.sh | |
- name: After script | |
run: | | |
../orca/bin/ci/after_success.sh | |
../orca/bin/ci/after_failure.sh | |
../orca/bin/ci/after_script.sh |