nim-eth-p2p/appveyor.yml

48 lines
1.8 KiB
YAML
Raw Normal View History

2018-03-28 09:13:48 +00:00
version: '{build}'
cache:
- x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z
- i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z
matrix:
2018-04-02 12:50:35 +00:00
fast_finish: true # set this flag to immediately finish build once one of the jobs fails.
2018-03-28 09:13:48 +00:00
environment:
2018-03-28 10:56:24 +00:00
2018-03-28 09:13:48 +00:00
matrix:
- MINGW_DIR: mingw32
MINGW_URL: https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win32/Personal%20Builds/mingw-builds/4.9.2/threads-win32/dwarf/i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z/download
MINGW_ARCHIVE: i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z
platform: x86
2018-03-28 10:56:24 +00:00
- MINGW_DIR: mingw64
MINGW_URL: https://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/4.9.2/threads-win32/seh/x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z/download
MINGW_ARCHIVE: x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z
platform: x64
2018-03-28 09:13:48 +00:00
install:
2018-04-02 13:40:37 +00:00
- setlocal EnableExtensions EnableDelayedExpansion
2018-03-28 09:13:48 +00:00
- 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%
2018-04-02 13:35:52 +00:00
- git clone https://github.com/nim-lang/Nim.git
2018-04-02 13:41:40 +00:00
- cd %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"
2018-04-02 13:47:31 +00:00
- for /f "tokens=*" %%G IN ('git branch -a --list ^"statusim/status-autopatch-*^"') DO (git merge %%G)
2018-03-28 09:13:48 +00:00
- git clone --depth 1 https://github.com/nim-lang/csources
- cd csources
- IF "%PLATFORM%" == "x64" ( build64.bat ) else ( build.bat )
- cd ..
- bin\nim c koch
- koch boot -d:release
- koch nimble
build_script:
2018-03-28 09:20:50 +00:00
- cd C:\projects\nim-eth-p2p
2018-03-28 09:13:48 +00:00
- nimble install -y
test_script:
2018-03-30 13:56:56 +00:00
- nimble test
2018-03-28 09:13:48 +00:00
deploy: off