Skip to content

Commit

Permalink
Drop old compiler versions from the build matrix.
Browse files Browse the repository at this point in the history
As per GitHub Actions, `ubuntu-latest` now uses Ubuntu Jammy and
LLVM/Clang versions 13 through 15 are what's currently available
in the nightly packages on the LLVM site; 16 is in development.

According to the GNU site, GCC versions 10 through 12 are what's
currently supported; 13 is in development.

Change-Id: Ia6c5ec12b0248e7df0a37d397748d11dc1748d3b
Reviewed-on: https://code-review.googlesource.com/c/re2/+/60830
Reviewed-by: Perry Lorier <[email protected]>
Reviewed-by: Paul Wankadia <[email protected]>
  • Loading branch information
junyer committed Nov 23, 2022
1 parent b80d1d5 commit ccec7ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ver: [9, 10, 11, 12, 13, 14, 15]
ver: [13, 14, 15]
env:
CC: clang-${{ matrix.ver }}
CXX: clang++-${{ matrix.ver }}
Expand All @@ -47,7 +47,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ver: [6, 7, 8, 9, 10, 11, 12]
ver: [10, 11, 12]
env:
CC: gcc
CXX: g++
Expand Down

0 comments on commit ccec7ce

Please sign in to comment.