Skip to content

Commit

Permalink
Update cmake-single-platform.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MikailuReeves authored Dec 12, 2023
1 parent b859db5 commit 08a4ad4
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,21 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Cache vcpkg installed packages
uses: actions/cache@v3
with:
path: ${{ env.VCPKG_DIR }}/installed
key: ${{ runner.os }}-vcpkg-installed-${{ hashFiles('**/vcpkg.json') }}

- name: Install vcpkg
shell: cmd
run: |
git clone https://github.com/microsoft/vcpkg.git ${{ env.VCPKG_DIR }}
.\vcpkg\bootstrap-vcpkg.bat
.\vcpkg\vcpkg install czmq
${{ env.VCPKG_DIR }}\bootstrap-vcpkg.bat
- name: Install czmq
shell: cmd
run: |
${{ env.VCPKG_DIR }}\vcpkg install czmq
- name: List installed packages
shell: cmd
run: .\vcpkg\vcpkg list
run: |
${{ env.VCPKG_DIR }}\vcpkg list
- name: Configure CMake
run: |
Expand Down

0 comments on commit 08a4ad4

Please sign in to comment.