From 4f366f7fac6ac4941517c4153cd88a692a7478b3 Mon Sep 17 00:00:00 2001 From: Mark Harfouche Date: Mon, 5 Jul 2021 11:03:08 -0400 Subject: [PATCH] Replace Ubntu 19.10 with 21.04 in test matrix --- README.md | 8 ++++---- build_miniforge.sh | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 86881f2a..f6e94e99 100644 --- a/README.md +++ b/README.md @@ -134,10 +134,10 @@ After construction on the CI, the installer is tested against a range of distrib - Centos 7 - Debian Buster (10) -- Ubuntu 16.04 -- Ubuntu 18.04 -- Ubuntu 19.10 -- Ubuntu 20.04 +- Ubuntu 16.04 ([LTS](https://ubuntu.com/about/release-cycle)) +- Ubuntu 18.04 ([LTS](https://ubuntu.com/about/release-cycle)) +- Ubuntu 20.04 ([LTS](https://ubuntu.com/about/release-cycle)) +- Ubuntu 21.04 (Latest non-LTS version) ## Usage diff --git a/build_miniforge.sh b/build_miniforge.sh index ec75085a..d4f9f4ff 100755 --- a/build_miniforge.sh +++ b/build_miniforge.sh @@ -32,7 +32,7 @@ docker run --rm -v "$(pwd):/construct" \ cp build/$MINIFORGE_NAME-*-$OS_NAME-$ARCH.$EXT build/$MINIFORGE_NAME-$OS_NAME-$ARCH.$EXT echo "============= Test the installer =============" -for TEST_IMAGE_NAME in "ubuntu:20.04" "ubuntu:19.10" "ubuntu:16.04" "ubuntu:18.04" "centos:7" "debian:buster"; do +for TEST_IMAGE_NAME in "ubuntu:21.04" "ubuntu:20.04" "ubuntu:18.04" "ubuntu:16.04" "centos:7" "debian:buster"; do echo "============= Test installer on ${TEST_IMAGE_NAME} =============" docker run --rm -v "$(pwd):/construct" -e CONSTRUCT_ROOT \ "${DOCKER_ARCH}/${TEST_IMAGE_NAME}" /construct/scripts/test.sh