Skip to content

Commit 2742e9e

Browse files
committed
#2364: use Ubuntu 22.04 in documentation build
1 parent a6bad05 commit 2742e9e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/build-docs.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
env:
1515
REPO: lifflander1/vt
1616
ARCH: amd64
17-
UBUNTU: 18.04
17+
UBUNTU: 22.04
1818
COMPILER_TYPE: gnu
19-
COMPILER: gcc-8
20-
HOST_COMPILER: gcc-8
19+
COMPILER: gcc-11
20+
HOST_COMPILER: gcc-11
2121
BUILD_TYPE: release
2222
ULIMIT_CORE: 0
2323
VT_LB: 1

ci/docker/ubuntu-gnu-docs.dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
ARG arch=amd64
2-
FROM ${arch}/ubuntu:18.04 as base
2+
ARG ubuntu=22.04
3+
FROM ${arch}/ubuntu:${ubuntu} as base
34

45
ARG proxy=""
56
ARG compiler=gcc-8

0 commit comments

Comments
 (0)