From 0660902b15a050f50aaac2afd3a0630ec6d3afed Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Wed, 24 Jul 2024 13:55:46 -0600 Subject: [PATCH] github actions: Disable podman builds Ubuntu 20.04 has an unfortunate circumstance where docker is rejecting podman because podman is using an older API version (1.22). It's not really possible for us to upgrade podman, or make docker accept the older API, so disable the podman tests --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1ca978c..4c62646 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -73,12 +73,12 @@ jobs: - {image: ubuntu-18.04-oegarmin, provider: docker, sh: bash} - {image: ubuntu-20.04-base, provider: docker, sh: bash} - {image: ubuntu-20.04-oe, provider: docker, sh: bash} - - {image: ubuntu-20.04-oe, provider: podman, sh: bash} + #- {image: ubuntu-20.04-oe, provider: podman, sh: bash} - {image: ubuntu-20.04-oetest, provider: docker, sh: bash} - {image: ubuntu-20.04-oegarmin, provider: docker, sh: bash} - {image: ubuntu-22.04-base, provider: docker, sh: bash} - {image: ubuntu-22.04-oe, provider: docker, sh: bash} - - {image: ubuntu-22.04-oe, provider: podman, sh: bash} + #- {image: ubuntu-22.04-oe, provider: podman, sh: bash} - {image: ubuntu-22.04-oegarmin, provider: docker, sh: bash} runs-on: ubuntu-20.04