Add ubuntu 22.04 to CI workflow (#1169)

- run-tests: test ubuntu 22.04 with python 3.x
- install.sh: add cgroupfs-mount to dependencies
This commit is contained in:
lantz
2023-04-22 20:08:37 -07:00
committed by GitHub
parent b762d0bf96
commit 4cfe97ee49
2 changed files with 9 additions and 3 deletions
+7 -2
View File
@@ -9,8 +9,13 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
python-version: [3.x, 2.x]
include:
- os: ubuntu-22.04
python-version: 3.x
- os: ubuntu-20.04
python-version: 3.x
- os: ubuntu-20.04
python-version: 2.x
steps:
- name: Check out Mininet source
uses: actions/checkout@v2
+1
View File
@@ -205,6 +205,7 @@ function mn_deps {
fi
$install iproute2 || $install iproute
$install cgroup-tools || $install cgroup-bin
$install cgroupfs-mount
fi
echo "Installing Mininet core"