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

Build: allow users to use Ubuntu 22.04 LTS #9009

Merged
merged 1 commit into from
Mar 25, 2022
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
1 change: 1 addition & 0 deletions readthedocs/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,7 @@ def TEMPLATES(self):
# Mapping of build.os options to docker image.
'os': {
'ubuntu-20.04': f'{DOCKER_DEFAULT_IMAGE}:ubuntu-20.04',
'ubuntu-22.04': f'{DOCKER_DEFAULT_IMAGE}:ubuntu-22.04',
},
# Mapping of build.tools options to specific versions.
'tools': {
Expand Down
2 changes: 1 addition & 1 deletion scripts/compile_version_upload_s3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ set -x # Echo commands

# Define variables
SLEEP=350 # Container timeout
OS="ubuntu-20.04" # Docker image name
OS="${OS:-ubuntu-22.04}" # Docker image name
TOOL=$1
VERSION=$2

Expand Down