Skip to content

Commit 1130312

Browse files
committed
Regenerate artifacts.
1 parent c65b308 commit 1130312

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,10 @@ jobs:
187187
188188
- name: Coveralls.io Upload
189189
if: ${{ matrix.coverage == 'cov' }}
190-
uses: pmienk/coveralls-github-action@master
190+
uses: coverallsapp/github-action@v2.2.3
191191
with:
192-
path-to-lcov: "./coverage.info"
192+
format: lcov
193+
files: "./coverage.info"
193194
github-token: ${{ secrets.github_token }}
194195

195196
- name: Failure display available binaries
@@ -420,9 +421,10 @@ jobs:
420421
421422
- name: Coveralls.io Upload
422423
if: ${{ matrix.coverage == 'cov' }}
423-
uses: pmienk/coveralls-github-action@master
424+
uses: coverallsapp/github-action@v2.2.3
424425
with:
425-
path-to-lcov: "./coverage.info"
426+
format: lcov
427+
files: "./coverage.info"
426428
github-token: ${{ secrets.github_token }}
427429

428430
- name: Failure display available binaries
@@ -622,9 +624,10 @@ jobs:
622624
623625
- name: Coveralls.io Upload
624626
if: ${{ matrix.coverage == 'cov' }}
625-
uses: pmienk/coveralls-github-action@master
627+
uses: coverallsapp/github-action@v2.2.3
626628
with:
627-
path-to-lcov: "./coverage.info"
629+
format: lcov
630+
files: "./coverage.info"
628631
github-token: ${{ secrets.github_token }}
629632

630633
- name: Failure display available binaries
@@ -719,7 +722,7 @@ jobs:
719722

720723
steps:
721724
- name: Add msbuild to PATH
722-
uses: microsoft/setup-msbuild@v1.1
725+
uses: microsoft/setup-msbuild@v2
723726
with:
724727
msbuild-architecture: x64
725728

@@ -749,7 +752,7 @@ jobs:
749752
}
750753
751754
- name: Execute build
752-
run: .\build.cmd .. ${{ matrix.platform }} ${{ matrix.configuration }} ${{ matrix.version }}
755+
run: .\build.cmd .. ${{ matrix.platform }} ${{ matrix.configuration }} x64 ${{ matrix.version }}
753756

754757
- name: Execute tests
755758
shell: powershell

build.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ SET "relative_path_base=%~1"
1111
call cd /d "%relative_path_base%"
1212
SET "path_base=%cd%"
1313
SET "nuget_pkg_path=%path_base%\.nuget\packages"
14-
SET "msbuild_args=/verbosity:minimal /p:Platform=%~2 /p:Configuration=%~3"
15-
SET "proj_version=%~4"
14+
SET "msbuild_args=/verbosity:minimal /p:Platform=%~2 /p:Configuration=%~3 /p:PreferredToolArchitecture=%~4"
15+
SET "proj_version=%~5"
1616
SET "msbuild_exe=msbuild"
17-
IF EXIST "%~5" SET "msbuild_exe=%~5"
17+
IF EXIST "%~6" SET "msbuild_exe=%~6"
1818

1919
call :pending "Build initialized..."
2020
IF NOT EXIST "%nuget_pkg_path%" (

0 commit comments

Comments
 (0)