8000 Merge branch '3.4' into 4.4 · symfony/symfony@e6250ea · GitHub
[go: up one dir, main page]

Skip to content

Commit e6250ea

Browse files
Merge branch '3.4' into 4.4
* 3.4: Fix CI
2 parents ba7c60b + 427e314 commit e6250ea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ install:
4848
- php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex
4949
- git config --global user.email ""
5050
- git config --global user.name "Symfony"
51-
- FOR /F "tokens=* USEBACKQ" %%F IN (`bash -c "grep branch-version composer.json | grep -o '[0-9.]*'"`) DO (SET SYMFONY_VERSION=%%F)
51+
- FOR /F "tokens=* USEBACKQ" %%F IN (`bash -c "grep branch-version composer.json | grep -o '[0-9.x]*'"`) DO (SET SYMFONY_VERSION=%%F)
5252
- php .github/build-packages.php "HEAD^" %SYMFONY_VERSION% src\Symfony\Bridge\PhpUnit src\Symfony\Contracts
5353
- SET "SYMFONY_REQUIRE=>=%SYMFONY_VERSION%"
5454
- SET COMPOSER_ROOT_VERSION=%SYMFONY_VERSION%.x-dev

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
run: |
5858
COMPOSER_HOME="$(composer config home)"
5959
([ -d "$COMPOSER_HOME" ] || mkdir "$COMPOSER_HOME") && cp .github/composer-config.json "$COMPOSER_HOME/config.json"
60-
echo "COMPOSER_ROOT_VERSION=$(grep branch-version composer.json | grep -o '[0-9.]*').x-dev" >> $GITHUB_ENV
60+
echo "COMPOSER_ROOT_VERSION=$(grep branch-version composer.json | grep -o '[0-9.x]*').x-dev" >> $GITHUB_ENV
6161
6262
- name: Determine composer cache directory
6363
id: composer-cache

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ install:
199199
git config --global user.email ""
200200
git config --global user.name "Symfony"
201201
202-
export SYMFONY_VERSION=$(grep branch-version composer.json | grep -o '[0-9.]*')
202+
export SYMFONY_VERSION=$(grep branch-version composer.json | grep -o '[0-9.x]*')
203203
204204
if [[ ! $deps ]]; then
205205
php .github/build-packages.php HEAD^ $SYMFONY_VERSION src/Symfony/Bridge/PhpUnit src/Symfony/Contracts

0 commit comments

Comments
 (0)
0