-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix build for windows code fixes and add regex lib files to project * vcxproj for all platforms build #define ZLIB_WINAPI commented due to win32 zlib linking error * move regex to lib directory * Add windows build workflow (#11) * Test windows runner * Add build-nzbget-vs22.bat. Update nzbget.vcxproj. * Add build stage on runner * Add upload artifacts * Update success exit code * Update hardcoded windows resource directory * Update include and lib file paths * Add version detect from nzbget.vcxproj * Update branches for build --------- Co-authored-by: phnzb <139914799+phnzb@users.noreply.github.com>
- Loading branch information
Showing
9 changed files
with
11,541 additions
and
38 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,28 @@ | ||
name: Build and upload NZBGet for Windows | ||
|
||
on: | ||
push: | ||
branches: | ||
- feature-* | ||
- develop | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: [self-hosted, windows] | ||
|
||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build | ||
run: | | ||
.\windows\build-nzbget-vs22.bat | ||
- name: Upload build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: nzbget-installers | ||
path: C:\nzbget\build\output\*.exe | ||
retention-days: 5 |
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
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
Oops, something went wrong.