Skip to content
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

Full doc-en render test #121

Merged
merged 6 commits into from
Apr 29, 2024
Merged
Changes from 3 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
29 changes: 29 additions & 0 deletions .github/workflows/full_render_doc-en_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test
on: [push, pull_request]
jobs:
test:
name: doc-en full render test
runs-on: ubuntu-latest
steps:
- name: Checkout PhD
uses: actions/checkout@v2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Normal this uses the V2 version?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're right, it should probably be v4. I copied it from an other test. :-)

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"
Loading