forked from ip7z/7zip
-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
30 changed files
with
5,598 additions
and
288 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
name: Build Windows binaries | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- 7z-zstd | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
#arch: [ x64, x64_x86, x64_arm64 ] | ||
arch: [ x64 ] | ||
include: | ||
- arch: x64 | ||
platform: x64 | ||
#- arch: x64_x86 | ||
# platform: x86 | ||
#- arch: x64_arm64 | ||
# platform: arm64 | ||
|
||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
|
||
- name: Build ${{ matrix.arch }} | ||
shell: cmd | ||
run: | | ||
build.cmd ${{ matrix.platform }} | ||
- name: Archive artifact ${{ matrix.arch }} | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Dark7z-zstd ${{ matrix.platform }} | ||
path: ${{ matrix.platform }}-bin |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -7,3 +7,11 @@ | |
*.exp | ||
*.lib | ||
|
||
# Folders | ||
*.vscode | ||
**/x86 | ||
**/x64 | ||
**/arm64 | ||
**/x86-bin | ||
**/x64-bin | ||
**/arm64-bin |
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 |
---|---|---|
|
@@ -21,6 +21,8 @@ | |
_UNICODE 1 | ||
*/ | ||
|
||
#define Z7_WIN32_WINNT_MIN 0x0600 | ||
|
||
#include "Compiler.h" | ||
|
||
#ifdef _MSC_VER | ||
|
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.