ci.yml: remove ubuntu-16.04

This is no longer supported by GitHub Actions.
This commit is contained in:
Eric Biggers 2021-11-03 22:26:42 -07:00
parent ee4d18872b
commit 22c0dd7afd

View File

@ -8,13 +8,8 @@ jobs:
name: Build and test (x86_64, ${{ matrix.os }}, ${{ matrix.compiler }}) name: Build and test (x86_64, ${{ matrix.os }}, ${{ matrix.compiler }})
strategy: strategy:
matrix: matrix:
os: [ubuntu-20.04, ubuntu-18.04, ubuntu-16.04] os: [ubuntu-20.04, ubuntu-18.04]
compiler: [gcc, clang] 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 }} runs-on: ${{ matrix.os }}
env: env:
CC: ${{ matrix.compiler }} CC: ${{ matrix.compiler }}