Skip to content
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

#2364: fix documentation build #2367

Merged
merged 2 commits into from
Nov 6, 2024
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
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
Loading