Skip to content

Commit c97263e

Browse files
committed
handle GitHub runner image updates
clang-14 and clang-15 are no longer installed by default.
1 parent a7302ad commit c97263e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
version: [14, 15]
2828
steps:
2929
- uses: actions/checkout@v4
30+
- name: Install dependencies
31+
run: sudo apt-get update && sudo apt-get install -y --no-install-recommends clang-14 clang-15
3032
- name: Setting up clang version
3133
run: |
3234
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${{ matrix.version }} 100

0 commit comments

Comments
 (0)