Skip to content

Commit

Permalink
Install Doxygen via Conan
Browse files Browse the repository at this point in the history
  • Loading branch information
kyllingstad committed Nov 24, 2023
1 parent ab1da1d commit 6ae391d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci-conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
mkdir /tmp/osp-builder-docker
cat <<'EOF' >/tmp/osp-builder-docker/Dockerfile
FROM conanio/gcc${{ matrix.compiler_version }}-ubuntu16.04
RUN apt-get update && apt-get install -y --force-yes doxygen
ENV CONAN_LOGIN_USERNAME_OSP=${{ secrets.osp_artifactory_usr }}
ENV CONAN_PASSWORD_OSP=${{ secrets.osp_artifactory_pwd }}
COPY entrypoint.sh /
Expand Down Expand Up @@ -79,7 +78,6 @@ jobs:
run: |
pip3 install --upgrade setuptools pip
pip3 install conan
choco install doxygen.install
- name: Configure Conan
run: |
conan profile detect
Expand Down
5 changes: 4 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ def configure(self):
self.options["*"].shared = self.options.shared

# Dependencies/requirements
tool_requires = "cmake/[>=3.15]"
tool_requires = (
"cmake/[>=3.15]",
"doxygen/[>=1.8]",
)
requires = (
"boost/[>=1.71.0]",
"libcosim/0.11.0@osp/testing-feature_conan-2",
Expand Down

0 comments on commit 6ae391d

Please sign in to comment.