-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
change some macro to function, add test for ci
- Loading branch information
1 parent
96850de
commit 15347ca
Showing
6 changed files
with
142 additions
and
31 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
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,36 @@ | ||
name: test_wintools | ||
on: | ||
push: {tags: ['v*'] } # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
pull_request: | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
test_windll_winhook: | ||
runs-on: windows-2019 | ||
steps: | ||
- name: pull and init | ||
uses: actions/checkout@v3 | ||
with: {submodules: true} | ||
|
||
- name: add msbuild to path | ||
uses: microsoft/setup-msbuild@v1.1 | ||
|
||
- name: test target | ||
shell: cmd | ||
run: .\project\windll_winhook\test_msvc.bat | ||
|
||
test_windll_winpe: | ||
runs-on: windows-2019 | ||
steps: | ||
- name: pull and init | ||
uses: actions/checkout@v3 | ||
with: {submodules: true} | ||
|
||
- name: add msbuild to path | ||
uses: microsoft/setup-msbuild@v1.1 | ||
|
||
- name: test target | ||
shell: cmd | ||
run: .\project\windll_winpe\test_msvc.bat |
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,6 @@ | ||
msbuild %~dp0\libwinhook.sln -t:libwinhook_test:rebuild -p:configuration=debug -p:Platform=x86 | ||
msbuild %~dp0\libwinhook.sln -t:libwinhook_test:rebuild -p:configuration=debug -p:Platform=x64 | ||
pushd %~dp0\build | ||
libwinhook_test32d | ||
libwinhook_test64d | ||
popd |
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,6 @@ | ||
msbuild %~dp0\libwinpe.sln -t:libwinpe_test:rebuild -p:configuration=debug -p:Platform=x86 | ||
msbuild %~dp0\libwinpe.sln -t:libwinpe_test:rebuild -p:configuration=debug -p:Platform=x64 | ||
pushd %~dp0\build | ||
libwinpe_test32d | ||
libwinpe_test64d | ||
popd |
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