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: switch tested centos base images (#20417) #20418

Merged
merged 1 commit into from
Dec 24, 2020
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
2 changes: 1 addition & 1 deletion releng/packages/spec/clean_install/_install_uninstall.bash
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function testInstalled() {

function testUninstalled() {
if command -v "$1" >/dev/null 2>&1 ; then
>&2 echo "$1 still on \$PATH after install"
>&2 echo "$1 still on \$PATH after uninstall"
exit 1
fi
}
Expand Down
2 changes: 1 addition & 1 deletion releng/packages/spec/clean_install/run.bash
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ fi

if [ -n "$IS_RPM" ]; then
# Latest is the most recent LTS, and Rolling is the most recent release.
for BASE_IMAGE in centos:6 centos:7 ; do
for BASE_IMAGE in centos:7 centos:8 ; do
if [ -n "$PKG" ]; then
dockerTest "$PKG" /data.rpm -R
fi
Expand Down