Update ci.yml

Use vcpkg acquired from setup-cpp action
This commit is contained in:
McMassiveNZ
2023-01-29 22:02:39 +01:00
parent 5b87efc8c2
commit 5cb984a70f

View File

@@ -70,8 +70,6 @@ jobs:
steps:
- name: checkout
uses: actions/checkout@v3
with:
submodules: true
- name: cache
uses: actions/cache@v3
@@ -100,14 +98,14 @@ jobs:
cppcheck: true
- name: Boostrap Vcpkg
run: ${{github.workspace}}/external/vcpkg/${{matrix.vcpkg_bootstrap}} -disableMetrics
run: ~/vcpkg/${{matrix.vcpkg_bootstrap}} -disableMetrics
- name: Install packaged dependencies
run: ${{github.workspace}}/external/vcpkg/vcpkg install spdlog --triplet ${{matrix.triplet}}
run: ~/vcpkg/vcpkg install spdlog --triplet ${{matrix.triplet}}
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{matrix.build_configuration}}
-DCMAKE_TOOLCHAIN_FILE=${{github.workspace}}/external/vcpkg/scripts/buildsystems/vcpkg.cmake
-DCMAKE_TOOLCHAIN_FILE=~/vcpkg/scripts/buildsystems/vcpkg.cmake
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_configuration}}