Skip to content

Commit 27f5873

Browse files
authored
Merge pull request #46 from Sichao25/yus/debug_actions
Debug `docs.yml` workflow
2 parents ee61d92 + 4a0d92d commit 27f5873

File tree

3 files changed

+22
-14
lines changed

3 files changed

+22
-14
lines changed

.github/workflows/docs.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,23 @@ on:
88

99
jobs:
1010
build:
11-
12-
runs-on: macos-latest
13-
11+
runs-on: ubuntu-latest
1412
steps:
1513
- name: Checkout repo
16-
uses: actions/[email protected]
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: '3.11'
20+
1721
- name: Requirements
18-
run: brew install doxygen
19-
&& pip3 install -r docsDoxySphinx/requirements.txt
22+
run: |
23+
sudo apt-get update
24+
sudo apt-get install doxygen
25+
pip3 install -r docsDoxySphinx/requirements.txt
26+
2027
- name: Build docs
21-
run: cd docsDoxySphinx
22-
&& make html
28+
run: |
29+
cd docsDoxySphinx
30+
make html

docsDoxySphinx/environment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ name: docs
22
channels:
33
- defaults
44
dependencies:
5-
- sphinx==4.5.0
5+
- sphinx==8.2.3
66
- pip:
7-
- sphinx_rtd_theme==1.0.0
7+
- sphinx_rtd_theme==3.0.2

docsDoxySphinx/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Sphinx==4.5.0
2-
sphinx-rtd-theme==1.0.0
3-
sphinx-sitemap==2.2.0
4-
breathe==4.33.1
1+
Sphinx==8.2.3
2+
sphinx-rtd-theme==3.0.2
3+
sphinx-sitemap==2.6.0
4+
breathe==4.35.0

0 commit comments

Comments
 (0)