Skip to content

Commit 24f66ec

Browse files
committed
Fix typos
1 parent 7815a35 commit 24f66ec

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,8 @@ jobs:
3636
- uses: actions/checkout@v4
3737

3838
- name: Install build tools
39-
run: >-
39+
run: |
4040
sudo apt-get install ninja-build -y -q
41-
4241
wget https://apt.llvm.org/llvm.sh
4342
chmod +x llvm.sh
4443
sudo sudo ./llvm.sh 19 # all

.github/workflows/macos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646

4747
- name: Install llvm-19
4848
if: startsWith(matrix.compiler, 'clang')
49-
run: >-
50-
brew install llvm-19 | echo ignored
49+
run: |
50+
brew install llvm@19 || echo ignored
5151
5252
- name: macos clang++-18 ${{ matrix.sanitizer }}
5353
if: startsWith(matrix.compiler, 'clang')

0 commit comments

Comments
 (0)