From 71d3e58d8ce91bfb11c94c9025a5f943a5819e57 Mon Sep 17 00:00:00 2001 From: lantz Date: Thu, 14 Oct 2021 17:09:34 -0700 Subject: [PATCH] Remove ubuntu-16.04 from run-tests.yaml (#1091) GitHub seems to have pulled the plug on 16.04 VMs for Actions, and this is breaking our integration. Ideally we should come up with another test method for 16.04 (notably the 16.04 kernel) as well as other distros that Actions doesn't support directly such as Debian. --- .github/workflows/run-tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml index bfa6b93..4b33f67 100644 --- a/.github/workflows/run-tests.yaml +++ b/.github/workflows/run-tests.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04] + os: [ubuntu-20.04, ubuntu-18.04] python-version: [3.x, 2.x] steps: - name: Check out Mininet source