Skip to content

Commit 17637d9

Browse files
committed
update workflows
1 parent 8404418 commit 17637d9

File tree

3 files changed

+4
-15
lines changed

3 files changed

+4
-15
lines changed

.github/workflows/build.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
name: Build
22

3-
on:
4-
push:
5-
branches:
6-
- "*"
7-
pull_request:
8-
branches:
9-
- "*"
3+
on: [push, pull_request]
104

115
jobs:
126
build-linux-i386:

.github/workflows/tests.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
name: Tests
22

3-
on:
4-
push:
5-
branches:
6-
- "*"
7-
pull_request:
8-
branches:
9-
- "*"
3+
on: [push, pull_request]
104

115
jobs:
126
tests-linux-i386:

wscript

+2-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,8 @@ def configure(conf):
394394
'/Zc:forScope',
395395
'/Zc:wchar_t',
396396
'/GR',
397-
'/TP'
397+
'/TP',
398+
'/EHsc'
398399
]
399400

400401
if conf.options.BUILD_TYPE == 'debug':

0 commit comments

Comments
 (0)