File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ install:
51
51
- php composer.phar global require --no-progress --no-scripts --no-plugins symfony/flex
52
52
- git config --global user.email ""
53
53
- git config --global user.name "Symfony"
54
- - FOR /F "tokens=* USEBACKQ" %%F IN (`bash -c "grep ' VERSION = ' src/Symfony/Component/HttpKernel/Kernel.php | grep -P - o '[0-9]+ \.[0-9]+ '"`) DO (SET SYMFONY_VERSION=%%F)
54
+ - FOR /F "tokens=* USEBACKQ" %%F IN (`bash -c "grep ' VERSION = ' src/Symfony/Component/HttpKernel/Kernel.php | grep -o '[0-9][0-9]* \.[0-9]'"`) DO (SET SYMFONY_VERSION=%%F)
55
55
- php .github/build-packages.php HEAD^ %SYMFONY_VERSION% src\Symfony\Bridge\PhpUnit
56
56
- SET "SYMFONY_REQUIRE=>=%SYMFONY_VERSION%"
57
57
- SET COMPOSER_ROOT_VERSION=%SYMFONY_VERSION%.x-dev
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ jobs:
104
104
105
105
# For the highest branch, in high-deps mode, the version before it is checked out and tested with the locally patched components
106
106
if [[ "${{ matrix.mode }}" = high-deps && $SYMFONY_VERSION = $(echo "$SYMFONY_VERSIONS" | tail -n 1 | sed s/.//) ]]; then
107
- echo FLIP='🙃 ' >> $GITHUB_ENV
107
+ echo FLIP='^ ' >> $GITHUB_ENV
108
108
SYMFONY_VERSION=$(echo "$SYMFONY_VERSIONS" | grep -FB1 /$SYMFONY_VERSION | head -n 1 | sed s/.//)
109
109
git fetch --depth=2 origin $SYMFONY_VERSION
110
110
git checkout -m FETCH_HEAD
@@ -157,7 +157,7 @@ jobs:
157
157
if [[ $ok -ne 0 ]]; then
158
158
printf "\n%-70s%10s\n" $title $(($end-$start))s
159
159
echo "$OUTPUT"
160
- echo -e "\n\\e[41mKO\\e[0m $title\\n"
160
+ echo -e "\n::error:: \\e[41mKO\\e[0m $title\\n"
161
161
else
162
162
printf "::group::%-68s%10s\n" $title $(($end-$start))s
163
163
echo "$OUTPUT"
@@ -189,7 +189,7 @@ jobs:
189
189
COMPONENTS=$(git diff --name-only src/ | grep composer.json || true)
190
190
191
191
if [[ $COMPONENTS && $SYMFONY_VERSION = *.4 ]]; then
192
- export FLIP='🙃 '
192
+ export FLIP='^ '
193
193
SYMFONY_VERSION=$(echo $SYMFONY_VERSION | awk '{print $1 - 1}')
194
194
echo -e "\\n\\e[33;1mChecking out Symfony $SYMFONY_VERSION and running tests with patched components as deps\\e[0m"
195
195
export COMPOSER_ROOT_VERSION=$SYMFONY_VERSION.x-dev
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ before_install:
44
44
45
45
# tfold is a helper to create folded reports
46
46
tfold () {
47
- local title="$PHP $1 $FLIP "
47
+ local title="$PHP $1"
48
48
local fold=$(echo $title | sed -r 's/[^-_A-Za-z0-9]+/./g')
49
49
shift
50
50
local id=$(printf %08x $(( RANDOM * RANDOM )))
You can’t perform that action at this time.
0 commit comments