Skip to content

Align Doxygen versions used for website publishing and PR checks #7527

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Feb 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/doxygen-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ on:
jobs:
# This job takes approximately 2 minutes
check-doxygen:
runs-on: ubuntu-20.04
# Note that the versions used for this `check-doxygen` job should be kept in
# sync with the `publish` job.
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Fetch dependencies
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ on: [push, pull_request]
jobs:
# This job takes approximately 3 minutes
publish:
runs-on: ubuntu-latest
# Note that the versions used for this `publish` job should be kept in sync
# with the `check-doxygen` job.
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
echo "Running doxygen version $(doxygen --version)"

# Check doxygen version
EXPECTED_VERSION="1.8.17"
EXPECTED_VERSION="1.9.1"
doxygen --version | grep ^$EXPECTED_VERSION > /dev/null
if [ $? -ne 0 ]
then
Expand Down
5 changes: 2 additions & 3 deletions src/analyses/ai.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,8 @@ Author: Daniel Kroening, [email protected]
/// Users of abstract interpreters should use the interface given by this class.
/// It breaks into three categories:
///
/// 1. Running an analysis, via
/// \ref ai_baset#operator()(const irep_idt&,const goto_programt&, <!--
/// --> const namespacet&),
/// 1. Running an analysis, via \ref
/// #operator()(const irep_idt&,const goto_programt&, const namespacet&),
/// \ref ai_baset#operator()(const goto_functionst&,const namespacet&)
/// and \ref ai_baset#operator()(const abstract_goto_modelt&)
/// 2. Accessing the results of an analysis, by looking up the history objects
Expand Down
Loading