Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 15 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,29 +23,33 @@ jobs:
name: Build Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- name: Build
run: cd src/ && make
- name: Generate artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: hashcat-utils-linux
path: src/*.bin
path: |
src/*.bin
src/*.py

build-macos:
strategy:
fail-fast: false
name: Build macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- name: Build
run: cd src/ && make
- name: Generate artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: hashcat-utils-macos
path: src/*.bin
path: |
src/*.bin
src/*.py

build-windows:
strategy:
Expand All @@ -60,7 +64,7 @@ jobs:
install: |
make
mingw-w64-x86_64-gcc
- uses: actions/checkout@v3
- uses: actions/checkout@v5
# Paths aren't correct in MSys2 for mingw, copy to the correct path for the Makefile
- name: Copy CRT_glob.o
shell: msys2 {0}
Expand All @@ -69,7 +73,9 @@ jobs:
shell: msys2 {0}
run: cd src/ && make windows
- name: Generate artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: hashcat-utils-windows
path: src/*.exe
path: |
src/*.exe
src/*.py