Skip to content

Commit

Permalink
ci: Fix doxygen doc job (#798)
Browse files Browse the repository at this point in the history
Pip changed it's dependency resolution algorithm a while ago. The job used an older version of pip which installed an inconsistent set of dependencies with a dependency update over the weekend. The job now updates pip first to get the new resolution behavior, which should fix the issue.
  • Loading branch information
paulgessinger committed May 10, 2021
1 parent 6cd6cee commit 9b864e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ jobs:
- name: Install dependencies
run: >
apt-get install -y doxygen
&& pip3 install -r docs/requirements.txt
&& pip3 install --upgrade pip
&& pip install -r docs/requirements.txt
- name: Configure
run: cmake -B build -S . -GNinja -DACTS_BUILD_DOCS=on
- name: Build
Expand Down

0 comments on commit 9b864e8

Please sign in to comment.