Skip to content

Commit 6759f89

Browse files
committed
Enable 1 clang build
1 parent 27dee66 commit 6759f89

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
# - { compiler: gcc, version: 15, build_type: Debug, cppstd: 20 }
2222
# - { compiler: gcc, version: 15, build_type: Release, cppstd: 20 }
2323

24-
# - { compiler: clang, version: 11, build_type: Release, cppstd: 17 }
24+
- { compiler: clang, version: 11, build_type: Release, cppstd: 17 }
2525
# - { compiler: clang, version: 11, build_type: Debug, cppstd: 17 }
2626
# - { compiler: clang, version: 12, build_type: Debug, cppstd: 17 }
2727
# - { compiler: clang, version: 13, build_type: Debug, cppstd: 17 }
@@ -54,20 +54,15 @@ jobs:
5454
fi
5555
echo "CC=clang-${{ matrix.config.version }}" >> $GITHUB_ENV
5656
echo "CXX=clang++-${{ matrix.config.version }}" >> $GITHUB_ENV
57-
# - name: vcpkg build
58-
# id: vcpkg
59-
# uses: johnwason/vcpkg-action@v7
60-
# with:
61-
# manifest-dir: ${{ github.workspace }} # Set to directory containing vcpkg.json
62-
# triplet: x64-windows-release
63-
# token: ${{ github.token }}
6457
- name: Setup vcpkg
6558
uses: lukka/run-vcpkg@v11
6659
with:
6760
vcpkgJsonGlob: '**/vcpkg.json'
6861
vcpkgDirectory: '${{ runner.workspace }}/b/vcpkg'
6962
vcpkgGitCommitId: 120deac3062162151622ca4860575a33844ba10b
7063
- name: Build
64+
# Note that run-vcpkg sets VCPKG_ROOT so use it to specify the toolchain
65+
# and avoid oddities with ${{ runner.workspace }}
7166
run: |
7267
mkdir -p build && cd build
7368
cmake .. \

0 commit comments

Comments
 (0)