-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MAKE: Preparing for the new Release v2.1.7
If due to certain decision the developer provides two versions of dummy-interface for the same file, no STAT applies the ordering rules as well. The first declared one is the version that is taken. Signed-off-by: Arseniy Aharonov <[email protected]>
- Loading branch information
1 parent
8cf6c62
commit c0483d1
Showing
6 changed files
with
72 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a single version of Python | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
|
||
name: VS build tests | ||
|
||
on: | ||
push: | ||
branches: [master, feature/**, bugfix/**] | ||
paths-ignore: ['docs/**', '*.md'] | ||
pull_request: | ||
branches: [master] | ||
paths-ignore: ['docs/**', '*.md'] | ||
|
||
jobs: | ||
framework-regression: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [windows-latest] | ||
python-version: [2.7, 3.8] | ||
|
||
steps: | ||
|
||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Run VS building tests | ||
run: | | ||
Start-Process "cmd.exe" "/c test_vs_build.cmd" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
@echo off | ||
for /f usebackq^ tokens^=2^ delims^=^" %%i in (`makestat.py -p lib stat_mock.mak -vs`) do set solution=%%i | ||
for /f "usebackq tokens=1* delims=: " %%i in (`..\..\resources\vswhere.exe -latest -requires Microsoft.VisualStudio.Workload.NativeDesktop`) do ( | ||
if /i "%%i"=="productPath" set ide=%%j | ||
) | ||
if "%solution%"=="" ( | ||
echo Failed to create a VS solution file. | ||
exit 1 | ||
) | ||
if "%ide%"=="" ( | ||
echo Failed to retrieve the location of devenv.ext file. | ||
exit 1 | ||
) | ||
echo Building... | ||
"%ide%" "%solution%" /Rebuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters