Skip to content

Commit

Permalink
build-unit-test-docker: update ubuntu to hirsute
Browse files Browse the repository at this point in the history
The latest Ubuntu "Hirsute Hippo" was released on 2021-04-22.
Switch our CI builds to use it.

Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Change-Id: If41dfd2247f0513bc297c4789cb051f7f69cbec4
  • Loading branch information
williamspatrick committed Apr 30, 2021
1 parent 3f8b529 commit 7339515
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/build-unit-test-docker
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# DOCKER_IMG_NAME: <optional, the name of the docker image to generate>
# default is openbmc/ubuntu-unit-test
# DISTRO: <optional, the distro to build a docker image against>
# default is ubuntu:groovy
# default is ubuntu:hirsute
# FORCE_DOCKER_BUILD: <optional, a non-zero value with force all Docker
# images to be rebuilt rather than reusing caches.>
# BUILD_URL: <optional, used to detect running under CI context
Expand Down Expand Up @@ -645,7 +645,7 @@ class Docker:
docker_image_name = os.environ.get("DOCKER_IMAGE_NAME", "openbmc/ubuntu-unit-test")
force_build = os.environ.get("FORCE_DOCKER_BUILD")
is_automated_ci_build = os.environ.get("BUILD_URL", False)
distro = os.environ.get("DISTRO", "ubuntu:groovy")
distro = os.environ.get("DISTRO", "ubuntu:hirsute")
branch = os.environ.get("BRANCH", "master")
ubuntu_mirror = os.environ.get("UBUNTU_MIRROR")
http_proxy = os.environ.get("http_proxy")
Expand Down

0 comments on commit 7339515

Please sign in to comment.