diff options
author | bloodstalker <thabogre@gmail.com> | 2019-11-28 07:32:49 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2019-11-28 07:32:49 +0000 |
commit | 488b150ef9530cba9923d390fe3c61c4cb51ee11 (patch) | |
tree | 23cb9905a99e076655bdc67ba217b690faaa6192 | |
parent | fix (diff) | |
download | cgrep-488b150ef9530cba9923d390fe3c61c4cb51ee11.tar.gz cgrep-488b150ef9530cba9923d390fe3c61c4cb51ee11.zip |
fix
-rw-r--r-- | appveyor.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/appveyor.yml b/appveyor.yml index ee6f522..e6b408a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,14 +7,13 @@ environment: CYG_CACHE: '%CYG_ROOT%\var\cache\setup' CYG_BASH: '%CYG_ROOT%\bin\bash' -init: - - 'git submodule init' - - 'git submodule update' - install: #- '%CYG_ROOT%\%CYG_SETUP% -gnqINDo -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P make,libclang-devel,libllvm-devel,clang > NULL 2>&1' - '%CYG_ROOT%\%CYG_SETUP% -gnqINDo -R "%CYG_ROOT%" -s "%CYG_MIRROR%" -l "%CYG_CACHE%" -P make,libclang-devel,libllvm-devel,clang,llvm' - '%CYG_ROOT%\bin\cygcheck -dc cygwin' + - 'cd %APPVEYOR_BUILD_FOLDER%' + - 'git submodule --init' + - 'git submodule --update' build_script: - '%CYG_ROOT%\bin\bash -lc "make -C $APPVEYOR_BUILD_FOLDER"' |