Skip to content

Commit

Permalink
ci: Revert the change to use macos to perform doc testing.
Browse files Browse the repository at this point in the history
It slowed the build down significantly, more than was acceptable.
  • Loading branch information
nfelt14 committed Oct 30, 2023
1 parent b5d4a50 commit 55841a3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
jobs:
# Test building the docs (html, linkcheck, doctest, coverage)
test-docs:
runs-on: macos-latest
runs-on: ubuntu-latest-4-cores
strategy:
fail-fast: false
matrix:
Expand All @@ -24,7 +24,7 @@ jobs:
with:
node-version: 18 # The node version needs to stay in sync with .readthedocs.yml
- run: npm install -g @mermaid-js/mermaid-cli
- run: brew install graphviz
- run: sudo apt install --no-install-recommends --assume-yes graphviz
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ ______________________________________________________________________

Things to be included in the next release go here.

### Fixed

- Fixed the `tippy.js` pop-ups in the documentation

______________________________________________________________________

## v0.1.23 (2023-10-30)
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Minimal makefile for Sphinx documentation

# You can set these variables from the command line.
SPHINXOPTS = -W --keep-going
SPHINXOPTS = -W --keep-going -j 2
SPHINXBUILD = python -msphinx
SPHINXPROJ = tm_devices
SOURCEDIR = .
Expand Down
2 changes: 1 addition & 1 deletion docs/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if "%BUILDDIR%" == "" (
)
set SPHINXPROJ=tm_devices
if "%SPHINXOPTS%" == "" (
set SPHINXOPTS=-W --keep-going
set SPHINXOPTS=-W --keep-going -j 2
)

if "%1" == "" goto help
Expand Down

0 comments on commit 55841a3

Please sign in to comment.