Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #63 to enable Drupal 10 support #64

Merged
merged 3 commits into from
Dec 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 19 additions & 19 deletions .github/workflows/orca.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,35 +32,35 @@ jobs:
matrix:
orca-job:
- STATIC_CODE_ANALYSIS # Static code analysis.
- INTEGRATED_TEST_ON_OLDEST_SUPPORTED # Integrated test on oldest supported Drupal core version.
- INTEGRATED_TEST_ON_LATEST_LTS # Integrated test on latest LTS Drupal core version.
- INTEGRATED_TEST_ON_PREVIOUS_MINOR # Integrated test on previous minor Drupal core version.
- INTEGRATED_UPGRADE_TEST_FROM_PREVIOUS_MINOR # Integrated upgrade test from previous minor.
- ISOLATED_TEST_ON_CURRENT # Isolated test on current Drupal core version.
# - INTEGRATED_TEST_ON_OLDEST_SUPPORTED # Integrated test on oldest supported Drupal core version.
# - INTEGRATED_TEST_ON_LATEST_LTS # Integrated test on latest LTS Drupal core version.
# - INTEGRATED_TEST_ON_PREVIOUS_MINOR # Integrated test on previous minor Drupal core version.
# - INTEGRATED_UPGRADE_TEST_FROM_PREVIOUS_MINOR # Integrated upgrade test from previous minor.
# - ISOLATED_TEST_ON_CURRENT # Isolated test on current Drupal core version.
# This job customized below under "include".
# - INTEGRATED_TEST_ON_CURRENT # Integrated test on current Drupal core version.
- ISOLATED_TEST_ON_CURRENT_DEV # Isolated test on current dev Drupal core version.
- INTEGRATED_TEST_ON_CURRENT_DEV # Integrated test on current dev Drupal core version.
- LOOSE_DEPRECATED_CODE_SCAN # Loose deprecated code scan.
- STRICT_DEPRECATED_CODE_SCAN # Strict deprecated code scan.
- DEPRECATED_CODE_SCAN_W_CONTRIB # Deprecated code scan w/ contrib.
- ISOLATED_TEST_ON_NEXT_MINOR # Isolated test on next minor Drupal core version.
- INTEGRATED_TEST_ON_NEXT_MINOR # Integrated test on next minor Drupal core version.
- ISOLATED_TEST_ON_NEXT_MINOR_DEV # Isolated test on next minor dev Drupal core version.
- INTEGRATED_TEST_ON_NEXT_MINOR_DEV # Integrated test on next minor dev Drupal core version.
- LOOSE_DEPRECATED_CODE_SCAN
# - ISOLATED_TEST_ON_CURRENT_DEV # Isolated test on current dev Drupal core version.
# - INTEGRATED_TEST_ON_CURRENT_DEV # Integrated test on current dev Drupal core version.
# - LOOSE_DEPRECATED_CODE_SCAN # Loose deprecated code scan.
# - STRICT_DEPRECATED_CODE_SCAN # Strict deprecated code scan.
# - DEPRECATED_CODE_SCAN_W_CONTRIB # Deprecated code scan w/ contrib.
# - ISOLATED_TEST_ON_NEXT_MINOR # Isolated test on next minor Drupal core version.
# - INTEGRATED_TEST_ON_NEXT_MINOR # Integrated test on next minor Drupal core version.
# - ISOLATED_TEST_ON_NEXT_MINOR_DEV # Isolated test on next minor dev Drupal core version.
# - INTEGRATED_TEST_ON_NEXT_MINOR_DEV # Integrated test on next minor dev Drupal core version.
# - LOOSE_DEPRECATED_CODE_SCAN
# Upgrade tests are not yet implemented.
# - INTEGRATED_UPGRADE_TEST_TO_NEXT_MINOR # Integrated upgrade test to next minor Drupal core version.
# - INTEGRATED_UPGRADE_TEST_TO_NEXT_MINOR_DEV # Integrated upgrade test to next minor dev Drupal core version.
# - INTEGRATED_UPGRADE_TEST_TO_NEXT_MINOR_DEV
# - ISOLATED_UPGRADE_TEST_TO_NEXT_MAJOR_BETA_OR_LATER # Isolated upgrade test to next major beta-or-later Drupal core version.
# - ISOLATED_UPGRADE_TEST_TO_NEXT_MAJOR_DEV # Isolated upgrade test to next major dev Drupal core version.
php-version: [ "7.4" ]
php-version: [ "8.1" ]
include:
# Acquia CMS/Spreadsheet/Behat integration test.
- orca-job: "INTEGRATED_TEST_ON_CURRENT"
php-version: "7.4"
behat: "TRUE"
# - orca-job: "INTEGRATED_TEST_ON_CURRENT"
# php-version: "8.1"
# behat: "TRUE"
- orca-job: ISOLATED_TEST_ON_NEXT_MAJOR_LATEST_MINOR_DEV
php-version: "8.1"
- orca-job: INTEGRATED_TEST_ON_NEXT_MAJOR_LATEST_MINOR_DEV
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
"source": "https://github.com/acquia/drupal-spec-tool"
},
"require": {
"php": "^7.3 || ^8.0",
"drupal/core": "^9.0",
"drupal/drupal-extension": "^3.4 || ^4.0",
"php": "^8.1",
"drupal/core": "^10.0.0-alpha1",
"drupal/drupal-extension": "dev-master",
"traviscarden/behat-table-comparison": "^0.3"
},
"suggest": {
Expand All @@ -39,7 +39,7 @@
},
"extra": {
"branch-alias": {
"dev-develop": "5.x-dev"
"dev-develop": "6.x-dev"
}
}
}