1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-16 17:42:04 +00:00

Disable MINGW test. It seems AppVeyor is no longer supporting MSYS2. Not a hashcat problem. See BUILD_MSYS2.md for local test.

This commit is contained in:
Jens Steube 2021-03-28 18:29:18 +02:00
parent df6be9ab72
commit 995dc96b9d

View File

@ -12,14 +12,16 @@ environment:
CYG_SETUP: setup-x86.exe CYG_SETUP: setup-x86.exe
BASH: C:\cygwin\bin\bash BASH: C:\cygwin\bin\bash
CC: gcc CC: gcc
- MSYSTEM: MINGW64 # Disable MINGW test. It seems AppVeyor is no longer supporting MSYS2. Not a hashcat problem.
MSYS_CACHE: C:\msys64\var\cache\pacman\pkg # See BUILD_MSYS2.md for local test
BASH: C:\msys64\usr\bin\bash #- MSYSTEM: MINGW64
CC: gcc # MSYS_CACHE: C:\msys64\var\cache\pacman\pkg
- MSYSTEM: MINGW32 # BASH: C:\msys64\usr\bin\bash
MSYS_CACHE: C:\msys64\var\cache\pacman\pkg # CC: gcc
BASH: C:\msys64\usr\bin\bash #- MSYSTEM: MINGW32
CC: gcc # MSYS_CACHE: C:\msys64\var\cache\pacman\pkg
# BASH: C:\msys64\usr\bin\bash
# CC: gcc
# if we have too many commits at the same time, we might need to download more than just the last commit for appveyor to succeed # if we have too many commits at the same time, we might need to download more than just the last commit for appveyor to succeed
# otherwise we get the error: "fatal: reference is not a tree <commit>" # otherwise we get the error: "fatal: reference is not a tree <commit>"
@ -36,12 +38,12 @@ install:
#- if defined MSYSTEM (%BASH% -lc "pacman -Rns --noconfirm mingw-w64-{i686,x86_64}-gcc-ada mingw-w64-{i686,x86_64}-gcc-objc") #- if defined MSYSTEM (%BASH% -lc "pacman -Rns --noconfirm mingw-w64-{i686,x86_64}-gcc-ada mingw-w64-{i686,x86_64}-gcc-objc")
# temporary fix for MSYS revoked/new signing keys: # temporary fix for MSYS revoked/new signing keys:
#- if defined MSYSTEM (%BASH% -lc "curl https://pastebin.com/raw/e0y4Ky9U | bash") #- if defined MSYSTEM (%BASH% -lc "curl https://pastebin.com/raw/e0y4Ky9U | bash")
- if defined MSYSTEM (%BASH% -lc "pacman -Suuy --noconfirm") #- if defined MSYSTEM (%BASH% -lc "pacman -Suuy --noconfirm")
# the following line is not a duplicate line: # the following line is not a duplicate line:
# it is necessary to upgrade the MSYS base files and after that all the packages # it is necessary to upgrade the MSYS base files and after that all the packages
# the 2 separate commands/lines are required because a new shell is necessary for each step # the 2 separate commands/lines are required because a new shell is necessary for each step
- if defined MSYSTEM (%BASH% -lc "pacman -Suuy --noconfirm") #- if defined MSYSTEM (%BASH% -lc "pacman -Suuy --noconfirm")
- if defined MSYSTEM (%BASH% -lc "pacman -S --needed --noconfirm git make gcc libiconv-devel") #- if defined MSYSTEM (%BASH% -lc "pacman -S --needed --noconfirm git make gcc libiconv-devel")
build_script: build_script:
- if defined BASH (%BASH% -lc "cd $(cygpath ${APPVEYOR_BUILD_FOLDER}) && make") - if defined BASH (%BASH% -lc "cd $(cygpath ${APPVEYOR_BUILD_FOLDER}) && make")