forked from vi3t1/vmprotect-3.5.1
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
3e02fde
commit 1edbe65
Showing
1 changed file
with
30 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,30 @@ | ||
name: vmpbuild | ||
on: [pull_request, push] | ||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Add MSBuild to PATH | ||
uses: microsoft/setup-msbuild@v2 | ||
- name: setup vsdevenv | ||
uses: seanmiddleditch/gha-setup-vsdevenv@master | ||
- name: Install Qt | ||
run: | | ||
pip install aqtinstall | ||
mkdir Qt | ||
cd Qt | ||
aqt install-qt windows desktop 5.12.12 win32_msvc2017 | ||
aqt install-qt windows desktop 5.12.12 win64_msvc2017_64 | ||
- name: build x64 | ||
shell: cmd | ||
run: | | ||
set QTDIR=%GITHUB_WORKSPACE%\Qt\5.12.12\msvc2017_64 | ||
set PATH=%PATH%;%GITHUB_WORKSPACE%\Qt\5.12.12\msvc2017_64\bin | ||
cmd.exe /c build-libffi.bat | ||
cmd.exe /c build-ultimate-x64.bat | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v1 | ||
with: | ||
name: vmp | ||
path: bin |