Bump submodule/zlib from 643e17b
to f1f503d
#122
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: Continuous Integration | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: windows-latest | |
strategy: | |
max-parallel: 6 | |
matrix: | |
build_configuration: [Release, Debug, Debug-xml-test] | |
build_platform: [x64, Win32] | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v1 | |
- name: "Use CI config files" | |
run: | | |
Write-Host "rename paths.props.appveyor" -ForegroundColor Green | |
Rename-Item -Path ".\paths.props.appveyor" -NewName "paths.props" | |
New-Item -ItemType directory -Path NotepadTest\unicode\plugins | |
New-Item -ItemType directory -Path NotepadTest\unicode\updater | |
New-Item -ItemType directory -Path NotepadTest\x64\plugins | |
New-Item -ItemType directory -Path NotepadTest\x64\updater | |
shell: pwsh | |
working-directory: . | |
- name: MSBuild of solution | |
working-directory: . | |
run: msbuild PluginManager.sln /m /verbosity:minimal /p:configuration="${{ matrix.build_configuration }}" /p:platform="${{ matrix.build_platform }}" | |