Skip to content

Commit e1df958

Browse files
committedMar 19, 2024·
update
1 parent c1c524e commit e1df958

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎.github/workflows/cmake-single-platform.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,17 @@ jobs:
1414
- name: Checkout repository
1515
uses: actions/checkout@v3
1616

17+
- name: Install new clang-17
18+
run: sudo apt -y install clang-17 --install-suggests
19+
1720
- name: Update System
1821
run: sudo apt -y update
1922

2023
- name: Configure CMake
2124
run: |
2225
mkdir build
2326
cd build
24-
cmake -DCMAKE_C_COMPILER=clang-17 -DCMAKE_CXX_COMPILER=clang++ ..
27+
cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ ..
2528
2629
- name: Build App
2730
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.