Skip to content

Commit

Permalink
WIP2: Add Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
painfulexistence committed Apr 4, 2024
1 parent a9f71d0 commit efafdea
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,16 @@ jobs:
run: |
echo "build-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT"
- name: Bootstrap vcpkg
shell: bash
- name: Bootstrap vcpkg on Unix
if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest'
run: |
${{ github.workspace }}/vcpkg/bootstrap-vcpkg.sh
- name: Bootstrap vcpkg on Windows
if: matrix.os == 'windows-latest'
run: |
${{ github.workspace }}/vcpkg/bootstrap-vcpkg.bat
- name: Install CMake and other dependencies on Ubuntu
if: matrix.os == 'ubuntu-latest'
run: |
Expand Down

0 comments on commit efafdea

Please sign in to comment.