Skip to content

Commit

Permalink
GitHub Actions: Use Ubuntu 22.10 for newer doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
jhasse committed Nov 16, 2022
1 parent 6778d72 commit e73c47a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ on:
push:
jobs:
doxygen:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
container:
image: ubuntu:22.10
steps:
- name: Install dependencies
run: |
sudo apt update
sudo apt install graphviz doxygen cmake
apt update
apt install -y graphviz doxygen cmake git
- uses: actions/checkout@v2
with:
persist-credentials: false
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ SteamOS:
pages:
stage: deploy
script:
- microdnf install -y doxygen cmake make tar xz >/dev/null
- microdnf install -y doxygen cmake make tar xz git >/dev/null
- cd doc
- cmake .
- make
Expand Down

0 comments on commit e73c47a

Please sign in to comment.