Skip to content

Commit 312076d

Browse files
committed
Testing libiconv for mac
1 parent 3b2aadd commit 312076d

File tree

1 file changed

+20
-15
lines changed

1 file changed

+20
-15
lines changed

.github/workflows/ci.yaml

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ jobs:
3030
fetch-depth: 0
3131
submodules: recursive
3232

33-
- name: Clang Format
34-
if: ${{ matrix.os == 'ubuntu-latest' }}
35-
uses: DoozyX/clang-format-lint-action@v0.18
36-
with:
37-
source: './src/'
38-
extensions: 'h,cpp'
39-
clangFormatVersion: 18
40-
inplace: True
41-
42-
- name: Commit formatting diff
43-
uses: EndBug/add-and-commit@v9
44-
with:
45-
author_name: GitHub
46-
author_email: github_action@lesma.com
47-
message: 'Committing clang-format changes'
33+
# - name: Clang Format
34+
# if: ${{ matrix.os == 'ubuntu-latest' }}
35+
# uses: DoozyX/clang-format-lint-action@v0.18
36+
# with:
37+
# source: './src/'
38+
# extensions: 'h,cpp'
39+
# clangFormatVersion: 18
40+
# inplace: True
41+
42+
# - name: Commit formatting diff
43+
# uses: EndBug/add-and-commit@v9
44+
# with:
45+
# author_name: GitHub
46+
# author_email: github_action@lesma.com
47+
# message: 'Committing clang-format changes'
4848

4949
- name: Install LLVM and Clang
5050
uses: KyleMayes/install-llvm-action@v2
@@ -54,6 +54,11 @@ jobs:
5454
- name: Install CMake & Ninja
5555
uses: lukka/get-cmake@latest
5656

57+
- name: Install libiconv
58+
if: ${{ matrix.os == 'macos-latest' }}
59+
run: |
60+
brew install libiconv
61+
5762
- name: Setup vcpkg
5863
uses: lukka/run-vcpkg@v11
5964
with:

0 commit comments

Comments
 (0)