From 9c15d13ee44c503c695b588bb7997c69aa1e10a2 Mon Sep 17 00:00:00 2001 From: Dave Marchevsky Date: Fri, 24 Sep 2021 14:09:42 -0400 Subject: [PATCH] remove ubuntu 16.04 from bcc-test github action As per [github](https://github.com/actions/virtual-environments/issues/3287), this is no longer supported. CI fails with errors like ``` This request was automatically failed because there were no enabled runners online to process the request for more than 1 days. ``` I will add 20.04 in a followup PR to match `publish.yml`. Want to keep it separate in case adding 20.04 causes issues, removing 16.04 should be much less likely to. --- .github/workflows/bcc-test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/bcc-test.yml b/.github/workflows/bcc-test.yml index 4907e29410c1..903a6697542f 100644 --- a/.github/workflows/bcc-test.yml +++ b/.github/workflows/bcc-test.yml @@ -7,8 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-16.04, ubuntu-18.04] # 16.04.4 release has 4.15 kernel - # 18.04.3 release has 5.0.0 kernel + os: [ubuntu-18.04] # 18.04.3 release has 5.0.0 kernel env: - TYPE: Debug PYTHON_TEST_LOGFILE: critical.log