Skip to content

Commit

Permalink
Make sure that dependent and cloned libraries are actually installed.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Aug 30, 2024
1 parent be6c310 commit d79c0c0
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions .github/workflows/antsibull-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[coverage] ../antsibull-core ../antsibull-docs-parser
pip install -e .[coverage] ../antsibull-core ../antsibull-changelog ../antsibull-docs-parser ../antsibull-docutils ../antsibull-fileutils
working-directory: antsibull-docs

- name: Use antsibull-docs sphinx-init
Expand Down Expand Up @@ -201,6 +201,18 @@ jobs:
repository: ansible-community/antsibull-changelog
path: antsibull-changelog

- name: Check out dependent project antsibull-docutils
uses: actions/checkout@v4
with:
repository: ansible-community/antsibull-docutils
path: antsibull-docutils

- name: Check out dependent project antsibull-fileutils
uses: actions/checkout@v4
with:
repository: ansible-community/antsibull-fileutils
path: antsibull-fileutils

- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
Expand All @@ -209,7 +221,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[coverage] ../antsibull-core ../antsibull-docs-parser
pip install -e .[coverage] ../antsibull-core ../antsibull-changelog ../antsibull-docs-parser ../antsibull-docutils ../antsibull-fileutils
working-directory: antsibull-docs

- name: Get hold of deps file
Expand Down Expand Up @@ -265,6 +277,18 @@ jobs:
repository: ansible-community/antsibull-changelog
path: antsibull-changelog

- name: Check out dependent project antsibull-docutils
uses: actions/checkout@v4
with:
repository: ansible-community/antsibull-docutils
path: antsibull-docutils

- name: Check out dependent project antsibull-fileutils
uses: actions/checkout@v4
with:
repository: ansible-community/antsibull-fileutils
path: antsibull-fileutils

- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
Expand All @@ -273,7 +297,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[coverage] ../antsibull-core ../antsibull-docs-parser
pip install -e .[coverage] ../antsibull-core ../antsibull-changelog ../antsibull-docs-parser ../antsibull-docutils ../antsibull-fileutils
working-directory: antsibull-docs

- name: Get hold of ansible.in file
Expand Down

0 comments on commit d79c0c0

Please sign in to comment.