File tree Expand file tree Collapse file tree 3 files changed +12
-14
lines changed Expand file tree Collapse file tree 3 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 21
21
22
22
jobs :
23
23
test :
24
- name : Test on Windows ${{ matrix.arch }}-${{ matrix.config }}
24
+ name : Test on Windows ${{ matrix.arch }}-${{ matrix.build }}
25
25
runs-on : ${{ matrix.os }}
26
26
strategy :
27
27
matrix :
28
28
arch : [Win32, x64]
29
- config : [Release, Debug]
30
- os : [windows-2016 ]
29
+ build : [Release, Debug]
30
+ os : [windows-2019 ]
31
31
32
32
steps :
33
33
34
34
- name : Checkout
35
35
uses : actions/checkout@v1
36
36
continue-on-error : true
37
37
38
- - name : Test ${{ matrix.arch }} ${{ matrix.config }}
38
+ - name : setup-msbuild
39
+
40
+ with :
41
+ vs-version : ' [16,)'
42
+
43
+ - name : Test ${{ matrix.arch }} ${{ matrix.build }}
39
44
shell : cmd
40
- run : build-tests.cmd ${{ matrix.arch }} ${{ matrix.config }}
45
+ run : build-tests.cmd ${{ matrix.arch }} ${{ matrix.build }}
Original file line number Diff line number Diff line change @@ -71,8 +71,8 @@ Other resources to learn how to setup the build system:
71
71
| Windows 8.1 | :white_check_mark : | |
72
72
| Windows 10.x | :white_check_mark : | |
73
73
| Windows Server 2012 | :white_check_mark : | |
74
- | Windows Server 2016 | :white_check_mark : | : white_check_mark : |
75
- | Windows Server 2019 | :white_check_mark : | |
74
+ | Windows Server 2016 | :white_check_mark : | |
75
+ | Windows Server 2019 | :white_check_mark : | : white_check_mark : |
76
76
77
77
* ** Supported** - these platforms are known to work well with the SDK in
78
78
production.
Original file line number Diff line number Diff line change @@ -22,13 +22,6 @@ echo Using custom properties file for the build:
22
22
echo %CUSTOM_PROPS%
23
23
:skip
24
24
25
- REM Add path to vs2017 MSBuild.exe
26
- set " PATH = %PATH% ;C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\"
27
-
28
- REM Try to setup vs2017 Dev environment if possible
29
- echo Building using Visual Studio 2017 tools
30
- call " C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\Tools\VsDevCmd.bat"
31
-
32
25
set MAXCPUCOUNT = %NUMBER_OF_PROCESSORS%
33
26
set SOLUTION = Solutions\MSTelemetrySDK.sln
34
27
You can’t perform that action at this time.
0 commit comments