Skip to content

Bump deps of the builder #16765

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

Merged
merged 3 commits into from
May 1, 2022
Merged
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
6 changes: 1 addition & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,7 @@ jobs:

- name: "Build the docs"
working-directory: _build
run: php build.php -vvv

- name: Show log file
if: ${{ always() }}
run: cat _build/logs.txt || true
run: php build.php --disable-cache

doctor-rst:
name: Lint (DOCtor-RST)
Expand Down
4 changes: 4 additions & 0 deletions _build/build.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@
$io->error(sprintf("There were some errors while building the docs:\n\n%s\n", $result->getErrorTrace()));
$io->newLine();
$io->comment('Tip: you can add the -v, -vv or -vvv flags to this command to get debug information.');

return 1;
}

return 0;
})
->getApplication()
->setDefaultCommand('build-docs', true)
Expand Down
Loading