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

FIX Do not require self #35

Merged
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,13 +317,13 @@ jobs:
# 1.6.10 is for --prefer-lowest and is the minimum version with php 8.1 support
composer require mikey179/vfsstream:^1.6.10 --dev --no-update

if [[ "${{ matrix.db }}" == "pgsql" ]] && ! [[ $GITHUB_REPOSITORY =~ /silverstripe-postgresql ]]; then
if [[ "${{ matrix.db }}" == "pgsql" ]] && ! [[ $GITHUB_REPOSITORY =~ /silverstripe-postgresql$ ]]; then
composer require silverstripe/postgresql:^2 --no-update
fi
if [[ "${{ matrix.endtoend }}" == "true" ]]; then
if [[ "${{ matrix.endtoend }}" == "true" ]] && ! [[ $GITHUB_REPOSITORY =~ /recipe-testing$ ]]; then
composer require silverstripe/recipe-testing:^2 --dev --no-update
fi
if [[ "${{ matrix.phplinting }}" == "true" ]]; then
if [[ "${{ matrix.phplinting }}" == "true" ]] && ! [[ $GITHUB_REPOSITORY =~ /cow$ ]]; then
# cow ~2.0 support guzzle 6 so is installable on older branches, dev-master supports guzzle 7
composer require "silverstripe/cow:~2.0 || dev-master" --dev --no-update
fi
Expand Down