Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/workflows/test_and_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
--repo_contents_cache="/home/runner/.cache/bazel/repo_contents" \
--repository_cache="/home/runner/.cache/bazel/repo" \
--disk_cache="/home/runner/.cache/bazel/disk" \
//:docs_combo_experimental -- \
//:docs_combo -- \
--github_user=${{ github.repository_owner }} \
--github_repo=${{ github.event.repository.name }}

Expand Down
1 change: 1 addition & 0 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ docs(
"@score_process//:needs_json",
"@score_docs_as_code//:needs_json",
],
known_good = "known_good.json",
source_dir = "docs",
)

Expand Down
6 changes: 5 additions & 1 deletion bazel_common/score_modules_tooling.MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,11 @@ git_override(
bazel_dep(name = "score_docs_as_code")
git_override(
module_name = "score_docs_as_code",
commit = "c1207676afe6cafd25c35d420e73279a799515d8",
commit = "b9aedef6c02f6ded6380e53b3ddc525d1427ff69",
patch_strip = 1,
patches = [
"//patches/docs-as-code:remove-nonexisting-document.patch",
],
remote = "https://github.com/eclipse-score/docs-as-code.git",
)

Expand Down
5 changes: 4 additions & 1 deletion known_good.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,10 @@
},
"score_docs_as_code": {
"repo": "https://github.com/eclipse-score/docs-as-code.git",
"hash": "c1207676afe6cafd25c35d420e73279a799515d8"
"hash": "b9aedef6c02f6ded6380e53b3ddc525d1427ff69",
"bazel_patches": [
"//patches/docs-as-code:remove-nonexisting-document.patch"
]
},
"score_process": {
"repo": "https://github.com/eclipse-score/process_description.git",
Expand Down
Empty file added patches/docs-as-code/BUILD
Empty file.
12 changes: 12 additions & 0 deletions patches/docs-as-code/remove-nonexisting-document.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/docs/internals/index.rst b/docs/internals/index.rst
index 2d3e7975..05e785e5 100644
--- a/docs/internals/index.rst
+++ b/docs/internals/index.rst
@@ -8,7 +8,6 @@ This section is not relevant for users of docs-as-code but for developers extend
.. toctree::
:maxdepth: 1

- extensions/index
benchmark_results
decisions/index
requirements/index
Loading