From 912cbc70aca54563a7da41a5147caa35b2f14154 Mon Sep 17 00:00:00 2001 From: Ximon Eighteen <3304436+ximon18@users.noreply.github.com> Date: Thu, 13 Jul 2023 12:59:32 +0200 Subject: [PATCH] Revert the Buster test exclusion now that the LXC project appears to have fixed their broken images. (#80) --- .github/workflows/pkg-rust.yml | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.github/workflows/pkg-rust.yml b/.github/workflows/pkg-rust.yml index c4996bf..0d9e3b4 100644 --- a/.github/workflows/pkg-rust.yml +++ b/.github/workflows/pkg-rust.yml @@ -412,17 +412,6 @@ jobs: fi fi - # Exclude debian:buster because the LXC image has problems starting cloud-init - if [[ "${PACKAGE_TEST_RULES_PROCESSED_JSON}" != "{}" ]]; then - CONTROL_JSON=$(echo ${PACKAGE_TEST_RULES_PROCESSED_JSON} | jq -c) - MODIFIED_JSON=$(echo ${PACKAGE_TEST_RULES_PROCESSED_JSON} | jq -c 'del(.image[]? | select(. == "debian:buster")) | del(.include[]? | select(.image == "debian:buster"))') - MODIFIED_JSON=$(echo ${MODIFIED_JSON} | jq -c 'del(.include[]? | select(.os == "debian:buster"))') - if [[ "${CONTROL_JSON}" != "${MODIFIED_JSON}" ]]; then - echo "::warning::Removed debian:buster image from package_test_rules because the LXC image currently fails when running cloud-init. See: https://github.com/NLnetLabs/ploutos/issues/78" - PACKAGE_TEST_RULES_PROCESSED_JSON="${MODIFIED_JSON}" - fi - fi - # Exclude non-x86_64 targets as we only run the tests on x86-64 GitHub runners if [[ "${PACKAGE_TEST_RULES_PROCESSED_JSON}" != "{}" ]]; then CONTROL_JSON=$(echo ${PACKAGE_TEST_RULES_PROCESSED_JSON} | jq -c)