Skip to content
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
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Add directory to safe dir overrides
run: |
git config --global --add safe.directory "$PWD"

- name: Build ${{ matrix.device }}
run: |
make DEVFAMILY=${{ matrix.device }} OS=${{ matrix.os }} \
VERSION=${{ github.ref_name }}
make DEVFAMILY=${{ matrix.device }} OS=${{ matrix.os }}

- name: Upload artifact
uses: actions/upload-artifact@v4
Expand Down
8 changes: 8 additions & 0 deletions _static/css/theme_overrides.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,11 @@
.wy-nav-content {
max-width: 100% !important;
}

/* Version compatibility override */
.wy-side-nav-search>div.version {
margin-top: -.4045em;
margin-bottom: .809em;
font-weight: 400;
color: hsla(0, 0%, 100%, .3);
}
19 changes: 19 additions & 0 deletions _templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,22 @@
<script src="https://www.ti.com/assets/js/headerfooter/analytics.js" type="text/javascript" charset="utf-8"></script>
{{ super() }}
{% endblock %}
{%- block sidebartitle %}
{# the logo helper function was removed in Sphinx 6 and deprecated since Sphinx 4 #}
{# the master_doc variable was renamed to root_doc in Sphinx 4 (master_doc still exists in later Sphinx versions) #}
{%- set _logo_url = logo_url|default(pathto('_static/' + (logo or ""), 1)) %}
{%- set _root_doc = root_doc|default(master_doc) %}
<a href="{{ pathto(_root_doc) }}"{% if not theme_logo_only %} class="icon icon-home"{% endif %}>
{% if not theme_logo_only %}{{ project }}{% endif %}
{%- if logo or logo_url %}
<img src="{{ _logo_url }}" class="logo" alt="{{ _('Logo') }}"/>
{%- endif %}
</a>
{%- set nav_version = version %}
{%- if nav_version %}
<div class="version">
{{ nav_version }}
</div>
{%- endif %}
{%- include "searchbox.html" %}
{% endblock %}
Loading