1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
name: Windows build
on:
push:
branches:
- '**'
pull_request:
jobs:
msbuild:
runs-on: windows-2022
strategy:
fail-fast: false
matrix:
toolset: [v142, v143]
unity: [unity, singles]
include:
- toolset: v142
boost_version: 77
vsversion: 2019
- toolset: v143
boost_version: 89
vsversion: 2022
steps:
- uses: actions/checkout@v5
- name: Setup MSVC++ environment
uses: ilammy/msvc-dev-cmd@v1
with:
arch: x64
- name: Setup Boost
run: |
$Url = "https://archives.boost.io/release/1.${{ matrix.boost_version }}.0/source/boost_1_${{ matrix.boost_version }}_0.zip"
(New-Object System.Net.WebClient).DownloadFile($Url, "$RUNNER_TEMP\boost.zip")
Expand-Archive -Path "$RUNNER_TEMP\boost.zip" -DestinationPath C:\local
Rename-Item -Path "C:\local\boost_1_${{ matrix.boost_version }}_0" -NewName "boost"
- name: Setup local properties
shell: cmd
run: |
COPY .ci\VS${{ matrix.vsversion }}.props .\Build.props
- name: Setup unity build
if: ${{ matrix.unity == 'unity' }}
shell: cmd
run: |
COPY .ci\Unity.props .\Directory.Build.props
- name: Build
run: |
msbuild ./QuantLib.sln /verbosity:normal /property:Configuration=Release /property:Platform=x64 /property:PlatformToolset=${{ matrix.toolset }}
- name: Test
run: |
.\test-suite\bin\QuantLib-test-suite*.exe --log_level=message
- name: Run examples
run: |
foreach ($file in Get-ChildItem -Path .\Examples\*.exe -Recurse)
{
& $file.FullName
if (!$?) { Exit $LASTEXITCODE }
}
|