From 5877933b287883a8589fc8c4f4c39ffe1cb6bd1e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Mon, 22 Aug 2022 16:21:56 +0200 Subject: [PATCH] switch to dnf rather than yum when testing container support on Ubuntu 20.04 --- .github/workflows/container_tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/container_tests.yml b/.github/workflows/container_tests.yml index 8ea249f005..02e31041f7 100644 --- a/.github/workflows/container_tests.yml +++ b/.github/workflows/container_tests.yml @@ -3,7 +3,6 @@ name: Tests for container support on: [push, pull_request] jobs: build: - # stick to Ubuntu 18.04, where we can still easily install yum via 'apt-get install' runs-on: ubuntu-20.04 strategy: matrix: @@ -24,7 +23,7 @@ jobs: sudo apt-get update -yqq # for building Singularity images sudo apt-get install rpm - sudo apt-get install yum + sudo apt-get install dnf # for modules tool sudo apt-get install lua5.2 liblua5.2-dev lua-filesystem lua-posix tcl tcl-dev # fix for lua-posix packaging issue, see https://bugs.launchpad.net/ubuntu/+source/lua-posix/+bug/1752082