Skip to content

Commit

Permalink
Try fix builds on agents
Browse files Browse the repository at this point in the history
  • Loading branch information
Stepanov Igor committed Dec 20, 2024
1 parent 84887d2 commit c8c5b45
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/windows-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@ jobs:
mingw-w64-clang-x86_64-ninja
git
- name: Bootstrap vcpkg
shell: msys2
run: ${{ github.workspace }}/vcpkg/bootstrap-vcpkg.bat
shell: msys2 {0}
run: |
git clone https://github.com/microsoft/vcpkg.git
${{ github.workspace }}/vcpkg/bootstrap-vcpkg.bat
${{ github.workspace }}/vcpkg/vcpkg integrate install
- name: Configure project with CMake and vcpkg
shell: msys2 {0}
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:

- name: Bootstrap vcpkg
shell: pwsh
run: ${{ github.workspace }}/vcpkg/bootstrap-vcpkg.bat
run: |
git clone https://github.com/microsoft/vcpkg.git
${{ github.workspace }}/vcpkg/bootstrap-vcpkg.bat
- name: Configure and build project with CMake and vcpkg
env:
Expand Down

0 comments on commit c8c5b45

Please sign in to comment.