Skip to content

Commit e279999

Browse files
committed
CI: upgrade Clang versions
1 parent 3f0690a commit e279999

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
@@ -13,18 +13,6 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
include:
16-
- clang: "3.9"
17-
runner: ubuntu-22.04
18-
archive: bionic
19-
- clang: "4.0"
20-
runner: ubuntu-22.04
21-
archive: bionic
22-
- clang: "5.0"
23-
runner: ubuntu-22.04
24-
archive: bionic
25-
- clang: "6.0"
26-
runner: ubuntu-22.04
27-
archive: bionic
2816
- clang: "7"
2917
runner: ubuntu-22.04
3018
archive: focal
@@ -46,11 +34,13 @@ jobs:
4634
runner: ubuntu-22.04
4735
- clang: "13"
4836
runner: ubuntu-22.04
49-
- clang: "14"
50-
runner: ubuntu-22.04
51-
- clang: "15"
52-
runner: ubuntu-22.04
53-
runs-on: ${{ matrix.runner }}
37+
- clang: 14
38+
- clang: 15
39+
- clang: 16
40+
- clang: 17
41+
- clang: 18
42+
- clang: 19
43+
runs-on: ${{ matrix.runner || 'ubuntu-latest' }}
5444
steps:
5545
- name: Add archive repositories
5646
if: matrix.archive
@@ -64,7 +54,6 @@ jobs:
6454
sudo apt-get update
6555
sudo apt-get install -y clang-${{ matrix.clang }}
6656
- name: Install libc++ ${{ matrix.clang }}
67-
if: matrix.clang >= 11
6857
run: sudo apt-get install -y libc++-${{ matrix.clang }}-dev libc++abi-${{ matrix.clang }}-dev
6958
- name: Install libunwind ${{ matrix.clang }}
7059
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)