Add support for zero-length salts in Electrum $4 and $5 #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
name: Build | |
env: | |
include_paths: | | |
charsets/ | |
docs/ | |
extra/ | |
layouts/ | |
masks/ | |
modules/ | |
OpenCL/ | |
rules/ | |
example* | |
hashcat* | |
libhashcat* | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- v* | |
paths: | |
- 'OpenCL/**.h' | |
- 'OpenCL/**.cl' | |
- 'include/**.h' | |
- 'src/**.c' | |
- 'tools/**' | |
- '**/Makefile' | |
- '.github/workflows/build.yml' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'OpenCL/**.h' | |
- 'OpenCL/**.cl' | |
- 'include/**.h' | |
- 'src/**.c' | |
- 'tools/**' | |
- '**/Makefile' | |
- '.github/workflows/build.yml' | |
jobs: | |
build-linux: | |
strategy: | |
fail-fast: false | |
matrix: | |
shared: [0, 1] | |
name: Build Linux (${{ matrix.shared == 0 && 'Static' || 'Shared' }}) | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
env: | |
SHARED: ${{ matrix.shared }} | |
run: make | |
- name: Generate artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hashcat-linux-${{ matrix.shared == 0 && 'static' || 'shared' }} | |
path: ${{ env.include_paths }} | |
build-macos: | |
strategy: | |
fail-fast: false | |
matrix: | |
shared: [0, 1] | |
name: Build macOS (${{ matrix.shared == 0 && 'Static' || 'Shared' }}) | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Build | |
env: | |
SHARED: ${{ matrix.shared }} | |
run: make | |
- name: Generate artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hashcat-macos-${{ matrix.shared == 0 && 'static' || 'shared' }} | |
path: ${{ env.include_paths }} | |
build-windows: | |
strategy: | |
fail-fast: false | |
matrix: | |
shared: [0, 1] | |
name: Build Windows (${{ matrix.shared == 0 && 'Static' || 'Shared' }}) | |
runs-on: windows-latest | |
steps: | |
- name: Install libiconv | |
uses: msys2/setup-msys2@v2 | |
with: | |
update: true | |
install: | | |
gcc | |
git | |
libiconv | |
libiconv-devel | |
make | |
- uses: actions/checkout@v3 | |
- name: Build | |
shell: msys2 {0} | |
env: | |
SHARED: ${{ matrix.shared }} | |
run: make | |
- name: Generate artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: hashcat-windows-${{ matrix.shared == 0 && 'static' || 'shared' }} | |
path: ${{ env.include_paths }} |