Skip to content

Commit d108bf0

Browse files
committed
- try include
1 parent 479f5c7 commit d108bf0

File tree

1 file changed

+18
-16
lines changed

1 file changed

+18
-16
lines changed

.github/workflows/cmake-multi-platform.yml

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ jobs:
3030
- os: windows-latest
3131
c_compiler: cl
3232
cpp_compiler: cl
33+
- os: windows-latest
34+
c_compiler: clang
35+
cpp_compiler: clang++
36+
- os: windows-latest
37+
c_compiler: gcc
38+
cpp_compiler: g++
3339
- os: ubuntu-latest
3440
c_compiler: gcc
3541
cpp_compiler: g++
@@ -47,25 +53,21 @@ jobs:
4753
if: matrix.c_compiler == 'cl'
4854
uses: ilammy/msvc-dev-cmd@v1
4955

50-
- name: on windows, setup llvm if clang is used
51-
if: matrix.c_compiler == 'clang' && matrix.os == 'windows-latest'
52-
shell: cmd
53-
run: |
54-
choco install llvm
56+
# - name: on windows, setup llvm if clang is used
57+
# if: matrix.c_compiler == 'clang' && matrix.os == 'windows-latest'
58+
# shell: cmd
59+
# run: |
60+
# choco install llvm -y >nul 2>&1
5561

56-
- name: on windows if gcc is used, setup mingw
57-
if: matrix.c_compiler == 'gcc' && matrix.os == 'windows-latest'
58-
shell: cmd
59-
run: |
60-
choco install mingw
61-
eho PATH=%PATH%;C:\msys64\mingw64\bin >> $GITHUB_ENV
6262

63-
- name: on ubuntu if clang is used, setup llvm
64-
if: matrix.c_compiler == 'clang' && matrix.os == 'ubuntu-latest'
65-
shell: bash
66-
run: |
67-
sudo apt-get install llvm
63+
# - name: on windows if gcc is used, setup mingw
64+
# if: matrix.c_compiler == 'gcc' && matrix.os == 'windows-latest'
65+
# shell: cmd
66+
# run: |
67+
# choco install mingw -y >nul 2>&1
6868

69+
# echo PATH=%PATH%;C:\msys64\mingw64\bin >> $GITHUB_ENV
70+
#
6971
- name: Set reusable strings
7072
# Turn repeated input strings (such as the build output directory) into step outputs. These step outputs can be used throughout the workflow file.
7173
id: strings

0 commit comments

Comments
 (0)