mirror of
https://github.com/hashcat/hashcat.git
synced 2024-10-31 20:48:57 +00:00
17 lines
434 B
YAML
17 lines
434 B
YAML
os:
|
|
- linux
|
|
- osx
|
|
language: c
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
before_install:
|
|
- |
|
|
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(.md)|(.vc)|(.tc)|(.pm)|(.diff)|(.pl)|(.sh)|(.cmd)|(.hash)|(.cl)|(.yaml)|(.rule)|(.hckmap)|(.charset)|(.yml)|(.editorconfig)|(.gitattributes)|(.gitignore)|(.lock)|(.hcmask)'
|
|
then
|
|
echo "No code changes detected, skip the CI build."
|
|
exit
|
|
fi
|
|
script:
|
|
- make
|