forked from EasyHook/EasyHook
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
0 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 @@ | ||
name: Build | ||
on: | ||
push | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-2022 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Add msbuild to PATH | ||
uses: microsoft/[email protected] | ||
# https://github.com/3F/DllExport/issues/29#issuecomment-284259126 | ||
- name: Install MS Build Tools 2015 | ||
run: curl https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe -o BuildTools_Full.exe && BuildTools_Full.exe /Q /Full | ||
shell: cmd | ||
- name: Prepare Build | ||
run: nuget restore -OutputDirectory .\Packages EasyHook.sln | ||
- name: Build x64 | ||
run: msbuild -m EasyHook.sln /p:Configuration=netfx4-Debug /p:Platform=x64 /p:TargetFrameworkVersion=v4.8 /p:TargetFrameworkProfile="" | ||
- name: Upload x86 Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: x86 | ||
path: | | ||
Build/netfx4-Debug/x86/*.dll | ||
Build/netfx4-Debug/x86/*.XML | ||
- name: Upload x64 Artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: x64 | ||
path: | | ||
Build/netfx4-Debug/x64/*.dll |