From 906946c9ca8b159186438d9a48641c8a9dd6aedd Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Tue, 13 Feb 2024 19:30:40 -0500 Subject: [PATCH] Run tests on more operating systems All versions of Ubuntu should make sure tzdata is installed --- metadata.json | 19 +++++++++++++++---- spec/spec_helper_acceptance.rb | 2 +- 2 files changed, 16 insertions(+), 5 deletions(-) diff --git a/metadata.json b/metadata.json index 1dc62238..2ef5af96 100644 --- a/metadata.json +++ b/metadata.json @@ -26,7 +26,8 @@ "operatingsystem": "RedHat", "operatingsystemrelease": [ "7", - "8" + "8", + "9" ] }, { @@ -40,7 +41,15 @@ "operatingsystem": "OracleLinux", "operatingsystemrelease": [ "7", - "8" + "8", + "9" + ] + }, + { + "operatingsystem": "Rocky", + "operatingsystemrelease": [ + "8", + "9" ] }, { @@ -53,14 +62,16 @@ "operatingsystem": "Debian", "operatingsystemrelease": [ "10", - "11" + "11", + "12" ] }, { "operatingsystem": "Ubuntu", "operatingsystemrelease": [ "18.04", - "20.04" + "20.04", + "22.04" ] } ], diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb index f778ad93..21fc2d78 100644 --- a/spec/spec_helper_acceptance.rb +++ b/spec/spec_helper_acceptance.rb @@ -24,5 +24,5 @@ } ) - apply_manifest_on(host, tzdata, catch_failures: true) if fact('os.release.major') =~ %r{(16.04|18.04)} + apply_manifest_on(host, tzdata, catch_failures: true) end