diff --git a/roles/write-root-marker/README.rst b/roles/write-root-marker/README.rst deleted file mode 100644 index 83d31851..00000000 --- a/roles/write-root-marker/README.rst +++ /dev/null @@ -1,19 +0,0 @@ -Write the root marker for an AFS publishing job - -** Role Variables ** - -.. zuul:rolevar:: sphinx_build_dir - :default: doc/build - - Directory relative to zuul_work_dir where Sphinx build output was put. - -.. zuul:rolevar:: zuul_work_dir - :default: {{ zuul.project.src_dir }} - - Directory to operate in. - -.. zuul:rolevar:: root_marker_dir - :default: {{ zuul_work_dir }}/{{ sphinx_build_dir }}/html - - The documentation build directory. The marker file will be placed - in this directory. diff --git a/roles/write-root-marker/defaults/main.yaml b/roles/write-root-marker/defaults/main.yaml deleted file mode 100644 index a631275c..00000000 --- a/roles/write-root-marker/defaults/main.yaml +++ /dev/null @@ -1,3 +0,0 @@ -sphinx_build_dir: "doc/build" -zuul_work_dir: "{{ zuul.project.src_dir }}" -root_marker_dir: "{{ zuul_work_dir }}/{{ sphinx_build_dir }}/html" diff --git a/roles/write-root-marker/tasks/main.yaml b/roles/write-root-marker/tasks/main.yaml deleted file mode 100644 index 567e9db7..00000000 --- a/roles/write-root-marker/tasks/main.yaml +++ /dev/null @@ -1,4 +0,0 @@ -- name: Write marker text - copy: - dest: "{{ root_marker_dir }}/.root-marker" - content: "Project: {{ zuul.project.name }} Branch: {{ zuul.branch | default('') }} Build: {{ zuul.build }} Revision: {{ zuul.ref }}"