Skip to content

Commit 370bd5b

Browse files
committed
Update build_windows.yaml
Add PR rules Change name to Ubuntu for CI
1 parent 6a0c480 commit 370bd5b

2 files changed

Lines changed: 17 additions & 2 deletions

File tree

.github/workflows/build_windows.yaml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@ name: C/C++ CI Windows
22

33
on:
44
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
types: [ready_for_review, opened, synchronize, reopened]
9+
paths:
10+
- .github/workflows/linux_build.yaml
11+
- ./App/**
12+
- ./OREAnalytics/**
13+
- '!./OREAnalytics/doc/**'
14+
- ./OREData/**
15+
- '!./OREData/doc/**'
16+
- ./ORETest/**
17+
- ./QuantExt/**
18+
- '!./QuantExt/doc/**'
19+
- CMakeLists.txt
520
workflow_dispatch:
621

722
jobs:
@@ -19,7 +34,7 @@ jobs:
1934
(New-Object System.Net.WebClient).DownloadFile($Url, "$env:TEMP\boost.exe")
2035
Start-Process -Wait -FilePath "$env:TEMP\boost.exe" "/SILENT","/SP-","/SUPPRESSMSGBOXES","/DIR=C:\local\boost"
2136
choco install -y ninja
22-
- name: apply patch
37+
- name: apply patch (temp fix for issue #160)
2338
run: |
2439
cd OREAnalytics/test
2540
Add-Content -Path .\CMakeLists.txt -Value "target_compile_definitions(orea-test-suite PUBLIC BOOST_USE_WINAPI_VERSION=0x0600)"

.github/workflows/linux_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: C/C++ CI
1+
name: C/C++ CI Ubuntu
22

33
on:
44
push:

0 commit comments

Comments
 (0)