Skip to content

Commit

Permalink
Try updating OS, debugging info
Browse files Browse the repository at this point in the history
  • Loading branch information
tautschnig committed Jan 13, 2025
1 parent 56bbf66 commit 347f342
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doxygen-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
check-doxygen:
# Note that the versions used for this `check-doxygen` job should be kept in
# sync with the `publish` job.
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Fetch dependencies
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
publish:
# Note that the versions used for this `publish` job should be kept in sync
# with the `check-doxygen` job.
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -25,7 +25,9 @@ jobs:
cd ..
- name: Build documentation
run: cd doc/doxygen-root && make && touch html/.nojekyll
run: |
echo 0 | sudo tee /proc/sys/kernel/apparmor_restrict_unprivileged_userns
cd doc/doxygen-root && make && touch html/.nojekyll
- name: Publish documentation
if: ${{ github.event_name == 'push' && startsWith('refs/heads/develop', github.ref) }}
Expand Down
2 changes: 2 additions & 0 deletions doc/doxygen-root/doxygen-markdown/markdown.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

set -euo pipefail

set -vx

BINDIR=$(dirname $(realpath ${BASH_SOURCE[0]}))
FILES=$(find . -name '*.md')

Expand Down

0 comments on commit 347f342

Please sign in to comment.