File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -5,18 +5,23 @@ on: [push, pull_request]
5
5
jobs :
6
6
build :
7
7
8
- runs-on : ${{matrix.os-type}}
8
+ runs-on : [windows-2022]
9
9
10
10
strategy :
11
11
matrix :
12
- os-type : [windows-2022 ]
12
+ toolset : [v142, v143 ]
13
13
configuration : [RelWithDebInfo]
14
14
15
15
steps :
16
16
- uses : actions/checkout@v2
17
17
with :
18
18
submodules : true
19
19
- name : Configure
20
- run : cmake -B ${{github.workspace}}/build
20
+ run : cmake -B build/ ${{matrix.toolset}} -G "Visual Studio 17 2022" -A x64 -T ${{matrix.toolset}}
21
21
- name : Build
22
22
run : cmake --build ${{github.workspace}}/build --config ${{matrix.configuration}}
23
+ - name : Upload
24
+ uses : actions/upload-artifact@v3
25
+ with :
26
+ name : OcctImportJS_Win_${{matrix.toolset}}_${{matrix.configuration}}.lib
27
+ path : build/${{matrix.toolset}}/${{matrix.configuration}}/occt-import-js.lib
You can’t perform that action at this time.
0 commit comments