You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/.github/workflows/build.yml

96 lines
2.4 KiB

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:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest] # todo: windows-latest - lack of iconv development files
shared: [0, 1]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Hashcat
uses: actions/checkout@v3
- name: Checkout win-iconv
uses: actions/checkout@v3
if: ${{ matrix.os == 'windows-latest' }}
with:
repository: win-iconv/win-iconv
path: 'win-iconv/'
clean: false
- name: Install WSL
uses: Vampire/setup-wsl@v1
if: ${{ matrix.os == 'windows-latest' }}
with:
additional-packages:
gcc-mingw-w64-x86-64
g++-mingw-w64-x86-64
make
git
patch
- name: Setup WSL
if: ${{ matrix.os == 'windows-latest' }}
shell: wsl-bash {0}
run: cd win-iconv/ && patch < ../tools/win-iconv-64.diff && sudo make install
- name: Build (Win)
if: ${{ matrix.os == 'windows-latest' }}
shell: wsl-bash {0}
run: make win
- name: Build (Unix)
if: ${{ matrix.os != 'windows-latest' }}
env:
SHARED: ${{ matrix.shared }}
run: make
- name: Generate static artifacts
if: ${{ matrix.shared == 0 }}
uses: actions/upload-artifact@v3
with:
name: hashcat-${{ runner.os }}-static
path: ${{ env.include_paths }}
- name: Generate shared artifacts
if: ${{ matrix.shared == 1 }}
uses: actions/upload-artifact@v3
with:
name: hashcat-${{ runner.os }}-shared
path: ${{ env.include_paths }}