Skip to content

Commit 587d67b

Browse files
committed
bug #16765 Bump deps of the builder (fabpot)
This PR was squashed before being merged into the 4.4 branch. Discussion ---------- Bump deps of the builder <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/releases for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `6.x` for features of unreleased versions). --> Commits ------- bf55fc5 Remove not-supported contents directive 29333b8 Fail the build when needed 9223968 Bump deps of the builder
2 parents 9035bd5 + bf55fc5 commit 587d67b

File tree

4 files changed

+221
-214
lines changed

4 files changed

+221
-214
lines changed

.github/workflows/ci.yaml

+1-5
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,7 @@ jobs:
4545

4646
- name: "Build the docs"
4747
working-directory: _build
48-
run: php build.php -vvv
49-
50-
- name: Show log file
51-
if: ${{ always() }}
52-
run: cat _build/logs.txt || true
48+
run: php build.php --disable-cache
5349

5450
doctor-rst:
5551
name: Lint (DOCtor-RST)

_build/build.php

+4
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@
5757
$io->error(sprintf("There were some errors while building the docs:\n\n%s\n", $result->getErrorTrace()));
5858
$io->newLine();
5959
$io->comment('Tip: you can add the -v, -vv or -vvv flags to this command to get debug information.');
60+
61+
return 1;
6062
}
63+
64+
return 0;
6165
})
6266
->getApplication()
6367
->setDefaultCommand('build-docs', true)

0 commit comments

Comments
 (0)