#2364: use Ubuntu 22.04 in documentation build #682
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Documentation | |
on: | |
push: | |
branches: | |
- develop | |
- 2364-fix-documentation-build | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
REPO: lifflander1/vt | |
ARCH: amd64 | |
UBUNTU: 22.04 | |
COMPILER_TYPE: gnu | |
COMPILER: gcc-11 | |
HOST_COMPILER: gcc-11 | |
BUILD_TYPE: release | |
ULIMIT_CORE: 0 | |
VT_LB: 1 | |
VT_TRACE: 1 | |
VT_TRACE_RT: 0 | |
VT_MIMALLOC: 0 | |
VT_DOCS: 1 | |
VT_ASAN: 0 | |
VT_UBSAN: 0 | |
TOKEN: ${{ secrets.GH_PAT }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image | |
run: docker compose run ubuntu-docs |