Skip to content
Open
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
4 changes: 3 additions & 1 deletion .ci/test/static/run
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ set -eo pipefail
#

# Run composer install to get the vendor directory
composer install --no-ansi --no-interaction --optimize-autoloader --no-progress
# ext-redis is ignored because the CI image doesn't ship it; Object Cache Pro
# requires it, but nothing is executed during static analysis.
composer install --ignore-platform-req=ext-redis --no-ansi --no-interaction --optimize-autoloader --no-progress

# Delete and reset the web directory
# This is necessary so that third-party
Expand Down
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,11 @@ workflows:
build_deploy_and_test:
jobs:
- configure_env_vars
- static_tests
# static_tests runs composer install, which downloads premium plugins
# from their registries, so it needs the same credentials as build_php.
- static_tests:
context:
- plugin_keys
- build_yarn
- build_php:
context:
Expand Down