From 22c0dd7afda501fb3819d4a32abc7c5c88cd0221 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Wed, 3 Nov 2021 22:26:42 -0700 Subject: [PATCH] ci.yml: remove ubuntu-16.04 This is no longer supported by GitHub Actions. --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff7cfdb..e0bbf58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,13 +8,8 @@ jobs: name: Build and test (x86_64, ${{ matrix.os }}, ${{ matrix.compiler }}) strategy: matrix: - os: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04] + os: [ubuntu-20.04, ubuntu-18.04] compiler: [gcc, clang] - exclude: - # clang 3.8.0-2ubuntu4 crashes with: - # "fatal error: error in backend: Cannot select: 0x21025a0: v64i8 = X86ISD::VBROADCAST 0x2101fb0" - - os: ubuntu-16.04 - compiler: clang runs-on: ${{ matrix.os }} env: CC: ${{ matrix.compiler }}