mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-12 00:31:41 +00:00
commit
41f5cce0f1
42
.appveyor.yml
Normal file
42
.appveyor.yml
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
environment:
|
||||||
|
CYG_MIRROR: http://cygwin.mirror.constant.com
|
||||||
|
CYG_PACKAGES: make,gcc-core,clang
|
||||||
|
matrix:
|
||||||
|
- CYG_ROOT: C:\cygwin64
|
||||||
|
CYG_CACHE: C:\cygwin64\var\cache\setup
|
||||||
|
CYG_SETUP: setup-x86_64.exe
|
||||||
|
BASH: C:\cygwin64\bin\bash
|
||||||
|
CC: gcc
|
||||||
|
- CYG_ROOT: C:\cygwin
|
||||||
|
CYG_CACHE: C:\cygwin\var\cache\setup
|
||||||
|
CYG_SETUP: setup-x86.exe
|
||||||
|
BASH: C:\cygwin\bin\bash
|
||||||
|
CC: gcc
|
||||||
|
- MSYSTEM: MINGW64
|
||||||
|
BASH: C:\msys64\usr\bin\bash
|
||||||
|
MSYS_CACHE: C:\msys64\var\cache\pacman\pkg
|
||||||
|
CC: gcc
|
||||||
|
- MSYSTEM: MINGW32
|
||||||
|
BASH: C:\msys64\usr\bin\bash
|
||||||
|
MSYS_CACHE: C:\msys64\var\cache\pacman\pkg
|
||||||
|
CC: gcc
|
||||||
|
|
||||||
|
clone_depth: 1
|
||||||
|
|
||||||
|
# Attempt to ensure we don't try to convert line endings to Win32 CRLF as this will cause build to fail
|
||||||
|
init:
|
||||||
|
- git config --global core.autocrlf input
|
||||||
|
# Allows RDP
|
||||||
|
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
||||||
|
|
||||||
|
# Install needed build dependencies
|
||||||
|
install:
|
||||||
|
- ps: if (Test-Path Env:\CYG_ROOT) { Start-FileDownload "http://cygwin.com/$env:CYG_SETUP" -FileName "$env:CYG_SETUP" }
|
||||||
|
- if defined CYG_ROOT (%CYG_SETUP% --quiet-mode --no-shortcuts --only-site --root "%CYG_ROOT%" --site "%CYG_MIRROR%" --local-package-dir "%CYG_CACHE%" --packages "%CYG_PACKAGES%" --upgrade-also)
|
||||||
|
- if defined MSYSTEM (%BASH% -lc "pacman -Suuy --noconfirm")
|
||||||
|
- if defined MSYSTEM (%BASH% -lc "pacman -Suuy --noconfirm")
|
||||||
|
build_script:
|
||||||
|
- if defined BASH (%BASH% -lc "cd $(cygpath ${APPVEYOR_BUILD_FOLDER}) && git submodule update --init && make")
|
||||||
|
# Allows RDP
|
||||||
|
#on_finish:
|
||||||
|
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
@ -2,12 +2,8 @@ os:
|
|||||||
- linux
|
- linux
|
||||||
- osx
|
- osx
|
||||||
language: c
|
language: c
|
||||||
install:
|
|
||||||
- git submodule init
|
|
||||||
- git submodule update
|
|
||||||
compiler:
|
compiler:
|
||||||
- clang
|
- clang
|
||||||
- gcc
|
- gcc
|
||||||
script:
|
script:
|
||||||
- make
|
- make
|
||||||
|
|
||||||
|
3
BUILD.md
3
BUILD.md
@ -16,8 +16,7 @@ $ git clone https://github.com/hashcat/hashcat.git
|
|||||||
Get a copy of the **OpenCL Headers** repository
|
Get a copy of the **OpenCL Headers** repository
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
$ git submodule init
|
$ git submodule update --init
|
||||||
$ git submodule update
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Run "make"
|
Run "make"
|
||||||
|
Loading…
Reference in New Issue
Block a user