Skip to content

Commit 5e5c287

Browse files
committed
CI: upgrade Clang versions
1 parent 377cf63 commit 5e5c287

File tree

2 files changed

+8
-19
lines changed

2 files changed

+8
-19
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,6 @@ jobs:
9393
fail-fast: false
9494
matrix:
9595
include:
96-
- clang: "3.9"
97-
runner: ubuntu-22.04
98-
archive: bionic
99-
- clang: "4.0"
100-
runner: ubuntu-22.04
101-
archive: bionic
102-
- clang: "5.0"
103-
runner: ubuntu-22.04
104-
archive: bionic
105-
- clang: "6.0"
106-
runner: ubuntu-22.04
107-
archive: bionic
10896
- clang: "7"
10997
runner: ubuntu-22.04
11098
archive: focal
@@ -126,11 +114,13 @@ jobs:
126114
runner: ubuntu-22.04
127115
- clang: "13"
128116
runner: ubuntu-22.04
129-
- clang: "14"
130-
runner: ubuntu-22.04
131-
- clang: "15"
132-
runner: ubuntu-22.04
133-
runs-on: ${{ matrix.runner }}
117+
- clang: 14
118+
- clang: 15
119+
- clang: 16
120+
- clang: 17
121+
- clang: 18
122+
- clang: 19
123+
runs-on: ${{ matrix.runner || 'ubuntu-latest' }}
134124
steps:
135125
- name: Add archive repositories
136126
if: matrix.archive
@@ -144,7 +134,6 @@ jobs:
144134
sudo apt-get update
145135
sudo apt-get install -y clang-${{ matrix.clang }}
146136
- name: Install libc++ ${{ matrix.clang }}
147-
if: matrix.clang >= 11
148137
run: sudo apt-get install -y libc++-${{ matrix.clang }}-dev libc++abi-${{ matrix.clang }}-dev
149138
- name: Install libunwind ${{ matrix.clang }}
150139
if: matrix.clang == 12 # dependency is missing in Ubuntu 22.04

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ ArduinoJson is a C++ JSON library for Arduino and IoT (Internet Of Things).
8080
* Continuously tested on
8181
* [Visual Studio 2017, 2019, 2022](https://ci.appveyor.com/project/bblanchon/arduinojson/branch/7.x)
8282
* [GCC 4.8, 5, 6, 7, 8, 9, 10, 11, 12](https://github.com/bblanchon/ArduinoJson/actions?query=workflow%3A%22Continuous+Integration%22)
83-
* [Clang 3.9, 4.0, 5.0, 6.0, 7, 8, 9, 10, 11, 12, 13, 14, 15](https://github.com/bblanchon/ArduinoJson/actions?query=workflow%3A%22Continuous+Integration%22)
83+
* [Clang 7 to 19](https://github.com/bblanchon/ArduinoJson/actions?query=workflow%3A%22Continuous+Integration%22)
8484
* [Continuously fuzzed with Google OSS Fuzz](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:arduinojson)
8585
* Passes all default checks of [clang-tidy](https://releases.llvm.org/10.0.0/tools/clang/tools/extra/docs/clang-tidy/)
8686
* Well documented

0 commit comments

Comments
 (0)