Update build.yml #30
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
name: Test 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: choco install microsoft-build-tools | |
run: curl https://download.microsoft.com/download/E/E/D/EEDF18A8-4AED-4CE0-BEBE-70A83094FC5A/BuildTools_Full.exe -o BuildTools_Full.exe && cmd BuildTools_Full.exe | |
#- name: Install | |
# run: Tools\ci_install.bat | |
#- name: Install .NET FX 3.5 | |
# run: Enable-WindowsOptionalFeature -Online -FeatureName "NetFx3" | |
#- name: Install .NET FX 4 | |
# run: Enable-WindowsOptionalFeature -Online -FeatureName "NetFx4" | |
- name: Prepare Build | |
run: nuget restore -OutputDirectory .\Packages EasyHook.sln | |
# - name: Prepare Build | |
# run: msbuild -m EasyHook.sln | |
- name: Build x64 | |
run: msbuild -m EasyHook.sln /p:Configuration=netfx4-Debug /p:Platform=x64 /p:TargetFrameworkVersion=v4.8 /p:TargetFrameworkProfile="" | |
- name: DBG1 | |
run: dir Build/ | |
- name: DBG | |
run: dir Build/netfx3.5-Debug/x64 | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: x86 | |
path: | | |
Build/netfx3.5-Debug/x86/*.dll | |
Build/netfx3.5-Debug/x86/*.XML | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: x64 | |
path: | | |
Build/netfx3.5-Debug/x64/*.dll |