baseline #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: πͺ Windows | |
on: | |
push: | |
branches: | |
- dummytest | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: build (windows) | |
runs-on: windows-2022 | |
strategy: | |
matrix: | |
include: | |
- triplet: 'x64-windows' | |
steps: | |
- name: π£ Checkout | |
uses: actions/checkout@v4 | |
- name: Setup vcpkg | |
uses: ./.github/actions/setup-vcpkg | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
- 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: π Build | |
run: | | |
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 |