Skip to content

Commit

Permalink
Merge pull request #2367 from DARMA-tasking/2364-fix-documentation-build
Browse files Browse the repository at this point in the history
#2364: fix documentation build
  • Loading branch information
lifflander authored Nov 6, 2024
2 parents a6bad05 + 98595cc commit 706dc4b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
env:
REPO: lifflander1/vt
ARCH: amd64
UBUNTU: 18.04
UBUNTU: 22.04
COMPILER_TYPE: gnu
COMPILER: gcc-8
HOST_COMPILER: gcc-8
COMPILER: gcc-11
HOST_COMPILER: gcc-11
BUILD_TYPE: release
ULIMIT_CORE: 0
VT_LB: 1
Expand Down
3 changes: 2 additions & 1 deletion ci/build_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ then
git clone "https://${token}@github.com/DARMA-tasking/DARMA-tasking.github.io"
git clone https://github.com/mosra/m.css
cd m.css
git checkout master
git checkout 699abdd5
sed -i '2600d' documentation/doxygen.py # remove incorrect assertion
cd ../

"$MCSS/documentation/doxygen.py" Doxyfile-mcss
Expand Down
3 changes: 2 additions & 1 deletion ci/docker/ubuntu-gnu-docs.dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
ARG arch=amd64
FROM ${arch}/ubuntu:18.04 as base
ARG ubuntu=22.04
FROM ${arch}/ubuntu:${ubuntu} as base

ARG proxy=""
ARG compiler=gcc-8
Expand Down

0 comments on commit 706dc4b

Please sign in to comment.