-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Full doc-en render test * Pass output directory option to PhD --------- Co-authored-by: haszi <[email protected]>
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Render Test | ||
on: [push, pull_request] | ||
jobs: | ||
test: | ||
name: doc-en | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout PhD | ||
uses: actions/checkout@v4 | ||
with: | ||
path: "phd" | ||
|
||
- name: "Checkout php/doc-en" | ||
uses: "actions/checkout@v4" | ||
with: | ||
path: "en" | ||
repository: "php/doc-en" | ||
|
||
- name: "Checkout php/doc-base" | ||
uses: "actions/checkout@v4" | ||
with: | ||
path: "doc-base" | ||
repository: "php/doc-base" | ||
|
||
- name: "Build documentation for doc-en" | ||
run: "php doc-base/configure.php --disable-libxml-check --enable-xml-details --redirect-stderr-to-stdout" | ||
|
||
- name: "Render documentation for doc-en" | ||
run: "php phd/render.php --docbook doc-base/.manual.xml --package PHP --format xhtml --format bigxhtml --format php --format tocfeed --forceindex --output output" |