Skip to content

Windows install

Windows install #3

Workflow file for this run

---
name: πŸͺŸ Windows
on:
push:
branches:
- dummytest
pull_request:
jobs:
build:
name: build (windows)
runs-on: windows-2022
strategy:
matrix:
include:
- triplet: 'x64-windows'
steps:
- name: 🐣 Checkout
uses: actions/checkout@v4
- name: 🐩 Install CMake and Ninja
uses: lukka/get-cmake@latest
- name: 🧽 Developer Command Prompt for Microsoft Visual C++
uses: ilammy/msvc-dev-cmd@v1
- name: Setup vcpkg
uses: ./.github/actions/setup-vcpkg
with:
vcpkgVersion: latest
vcpkgRoot: /c/vcpkg
vcpkgDownload: /c/vcpkg-downloads
- name: πŸŒ‹ Build
run: |
C:/vcpkg/vcpkg.exe install --overlay-ports="${{ github.workspace }}/ports" --triplet=${{ matrix.triplet }} py-sip
- name: πŸ“‘ Upload logs
uses: actions/upload-artifact@v4
if: failure()
with:
name: logs-${{ matrix.triplet }}
path: /c/vcpkg/buildtrees/**/*.log