Skip to content

Commit

Permalink
Create simple CI Build
Browse files Browse the repository at this point in the history
  • Loading branch information
MeFisto94 authored Jul 19, 2023
1 parent 4fb8501 commit 76a501d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/build.yml
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

0 comments on commit 76a501d

Please sign in to comment.