From b69d9d473d39f89a0f49bfdcf4fba05779ad1131 Mon Sep 17 00:00:00 2001 From: cheatfate Date: Mon, 2 Apr 2018 16:13:16 +0300 Subject: [PATCH] Add posibility to use nimbus with patches. --- appveyor.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 109dd42..0539db3 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,8 +23,11 @@ install: - IF not exist "%MINGW_ARCHIVE%" appveyor DownloadFile "%MINGW_URL%" -FileName "%MINGW_ARCHIVE%" - 7z x -y "%MINGW_ARCHIVE%" > nul - SET PATH=%CD%\%MINGW_DIR%\bin;%CD%\Nim\bin;%PATH% - # - git clone https://github.com/nim-lang/Nim.git %CD%\Nim - - git clone https://github.com/status-im/Nim.git %CD%\Nim + - git remote add statusim https://github.com/status-im/Nim.git + - git fetch statusim + - git config --global user.email "you@example.com" + - git config --global user.name "Your Name" + - for /f "tokens=*" %%G IN ('git branch -a --list ^"statusim/status-autopatch-*^"') DO (git merge %%G) - cd %CD%\Nim - git clone --depth 1 https://github.com/nim-lang/csources - cd csources