Skip to content

Commit e371736

Browse files
committed
drop legacy compiler versions from GitHub workflow
1 parent c46d3ca commit e371736

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
version: [12, 13, 14]
14+
version: [14]
1515
steps:
1616
- uses: actions/checkout@v5
1717
- name: Setting up gcc version
@@ -24,11 +24,11 @@ jobs:
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
27-
version: [14, 15, 16, 17, 18, 19, 20]
27+
version: [19, 20]
2828
steps:
2929
- uses: actions/checkout@v5
3030
- name: Install dependencies
31-
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends clang-14 clang-15 clang-19 clang-20
31+
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends clang-19 clang-20
3232
- name: Setting up clang version
3333
run: |
3434
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100

0 commit comments

Comments
 (0)