ci: update
This commit is contained in:
parent
4262ea8670
commit
817a1fb348
123
.appveyor.yml
123
.appveyor.yml
|
@ -1,57 +1,104 @@
|
||||||
version: '{build}'
|
version: '{build}'
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
- x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z -> appveyor.yml
|
- sqlite-dll-win32-x86-3240000.zip -> .appveyor.yml
|
||||||
- i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z -> appveyor.yml
|
- sqlite-dll-win64-x64-3240000.zip -> .appveyor.yml
|
||||||
- sqlite-dll-win32-x86-3240000.zip -> appveyor.yml
|
- nimbus-deps.zip -> .appveyor.yml
|
||||||
- sqlite-dll-win64-x64-3240000.zip -> appveyor.yml
|
- x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z -> .appveyor.yml
|
||||||
- nimbus-deps.zip -> appveyor.yml
|
- i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z -> .appveyor.yml
|
||||||
|
- Nim -> .appveyor.yml
|
||||||
|
|
||||||
|
matrix:
|
||||||
# We always want 32 and 64-bit compilation
|
# We always want 32 and 64-bit compilation
|
||||||
matrix:
|
fast_finish: false
|
||||||
fast_finish: false # set this flag to immediately finish build once one of the jobs fails.
|
|
||||||
|
|
||||||
environment:
|
platform:
|
||||||
|
- x86
|
||||||
matrix:
|
- x64
|
||||||
- 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
|
|
||||||
MINGW_ARCHIVE: i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z
|
|
||||||
SQLITE_URL: https://www.sqlite.org/2018/sqlite-dll-win32-x86-3240000.zip
|
|
||||||
SQLITE_ARCHIVE: sqlite-dll-win32-x86-3240000.zip
|
|
||||||
ROCKSDB_URL: https://github.com/status-im/nimbus-deps/releases/download/nimbus-deps/nimbus-deps.zip
|
|
||||||
ROCKSDB_ARCHIVE: nimbus-deps.zip
|
|
||||||
platform: x86
|
|
||||||
- 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
|
|
||||||
MINGW_ARCHIVE: x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z
|
|
||||||
SQLITE_URL: https://www.sqlite.org/2018/sqlite-dll-win64-x64-3240000.zip
|
|
||||||
SQLITE_ARCHIVE: sqlite-dll-win64-x64-3240000.zip
|
|
||||||
ROCKSDB_URL: https://github.com/status-im/nimbus-deps/releases/download/nimbus-deps/nimbus-deps.zip
|
|
||||||
ROCKSDB_ARCHIVE: nimbus-deps.zip
|
|
||||||
platform: x64
|
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- setlocal EnableExtensions EnableDelayedExpansion
|
- setlocal EnableExtensions EnableDelayedExpansion
|
||||||
- MKDIR %CD%\bin
|
|
||||||
- IF not exist "%MINGW_ARCHIVE%" appveyor DownloadFile "%MINGW_URL%" -FileName "%MINGW_ARCHIVE%"
|
- IF "%PLATFORM%" == "x86" (
|
||||||
|
SET "MINGW_ARCHIVE=i686-4.9.2-release-win32-dwarf-rt_v4-rev4.7z" &
|
||||||
|
SET "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" &
|
||||||
|
SET "MINGW_DIR=mingw32"
|
||||||
|
SET "SQLITE_URL=https://www.sqlite.org/2018/sqlite-dll-win32-x86-3240000.zip"
|
||||||
|
SET "SQLITE_ARCHIVE=sqlite-dll-win32-x86-3240000.zip"
|
||||||
|
SET "ROCKSDB_URL=https://github.com/status-im/nimbus-deps/releases/download/nimbus-deps/nimbus-deps.zip"
|
||||||
|
SET "ROCKSDB_ARCHIVE=nimbus-deps.zip"
|
||||||
|
) ELSE (
|
||||||
|
IF "%PLATFORM%" == "x64" (
|
||||||
|
SET "MINGW_ARCHIVE=x86_64-4.9.2-release-win32-seh-rt_v4-rev4.7z" &
|
||||||
|
SET "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" &
|
||||||
|
SET "MINGW_DIR=mingw64"
|
||||||
|
SET "SQLITE_URL=https://www.sqlite.org/2018/sqlite-dll-win64-x64-3240000.zip"
|
||||||
|
SET "SQLITE_ARCHIVE=sqlite-dll-win64-x64-3240000.zip"
|
||||||
|
SET "ROCKSDB_URL=https://github.com/status-im/nimbus-deps/releases/download/nimbus-deps/nimbus-deps.zip"
|
||||||
|
SET "ROCKSDB_ARCHIVE=nimbus-deps.zip"
|
||||||
|
) else (
|
||||||
|
echo "Unknown platform"
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
- SET PATH=%CD%\%MINGW_DIR%\bin;%CD%\Nim\bin;%PATH%
|
||||||
|
|
||||||
|
# Unpack mingw
|
||||||
|
- IF NOT EXIST "%MINGW_ARCHIVE%" appveyor DownloadFile "%MINGW_URL%" -FileName "%MINGW_ARCHIVE%"
|
||||||
- 7z x -y "%MINGW_ARCHIVE%" > nul
|
- 7z x -y "%MINGW_ARCHIVE%" > nul
|
||||||
|
|
||||||
|
# Unpack sqlite
|
||||||
- IF not exist "%SQLITE_ARCHIVE%" appveyor DownloadFile "%SQLITE_URL%" -FileName "%SQLITE_ARCHIVE%"
|
- IF not exist "%SQLITE_ARCHIVE%" appveyor DownloadFile "%SQLITE_URL%" -FileName "%SQLITE_ARCHIVE%"
|
||||||
- 7z x -y "%SQLITE_ARCHIVE%" > nul
|
- 7z x -y "%SQLITE_ARCHIVE%" > nul
|
||||||
- IF "%PLATFORM%" == "x64" ( copy %CD%\sqlite3.dll %CD%\bin\sqlite3_64.dll ) ELSE ( copy %CD%\sqlite3.dll %CD%\bin\sqlite3_32.dll )
|
- IF "%PLATFORM%" == "x64" ( copy %CD%\sqlite3.dll %CD%\bin\sqlite3_64.dll ) ELSE ( copy %CD%\sqlite3.dll %CD%\bin\sqlite3_32.dll )
|
||||||
|
|
||||||
|
# Unpack rocksdb
|
||||||
- IF not exist "%ROCKSDB_ARCHIVE%" appveyor DownloadFile "%ROCKSDB_URL%" -FileName "%ROCKSDB_ARCHIVE%"
|
- IF not exist "%ROCKSDB_ARCHIVE%" appveyor DownloadFile "%ROCKSDB_URL%" -FileName "%ROCKSDB_ARCHIVE%"
|
||||||
- 7z x -y "%ROCKSDB_ARCHIVE%" > nul
|
- 7z x -y "%ROCKSDB_ARCHIVE%" > nul
|
||||||
- IF "%PLATFORM%" == "x64" ( copy %CD%\x64\librocksdb.dll %CD%\bin\librocksdb.dll ) ELSE ( copy %CD%\x86\librocksdb.dll %CD%\bin\librocksdb.dll )
|
- IF "%PLATFORM%" == "x64" ( copy %CD%\x64\librocksdb.dll %CD%\bin\librocksdb.dll ) ELSE ( copy %CD%\x86\librocksdb.dll %CD%\bin\librocksdb.dll )
|
||||||
- SET PATH=%CD%\%MINGW_DIR%\bin;%CD%\bin;%CD%\Nim\bin;%PATH%
|
|
||||||
- git clone https://github.com/status-im/Nim.git
|
# build nim from our own branch - this to avoid the day-to-day churn and
|
||||||
- cd %CD%\Nim
|
# regressions of the fast-paced Nim development while maintaining the
|
||||||
- git clone --depth 1 https://github.com/nim-lang/csources
|
# flexibility to apply patches
|
||||||
- cd csources
|
- SET "NEED_REBUILD="
|
||||||
- IF "%PLATFORM%" == "x64" ( build64.bat ) else ( build.bat )
|
|
||||||
- cd ..
|
- IF NOT EXIST "Nim\\.git\\" (
|
||||||
- bin\nim c koch
|
git clone https://github.com/status-im/Nim.git
|
||||||
- koch boot -d:release
|
) ELSE (
|
||||||
- koch nimble
|
( cd Nim ) &
|
||||||
|
( git pull ) &
|
||||||
|
( cd .. )
|
||||||
|
)
|
||||||
|
|
||||||
|
# Rebuild Nim if HEAD has moved or if we don't yet have a cached version
|
||||||
|
- IF NOT EXIST "Nim\\ver.txt" (
|
||||||
|
SET NEED_REBUILD=1
|
||||||
|
) ELSE (
|
||||||
|
( CD Nim ) &
|
||||||
|
( git rev-parse HEAD > ..\\cur_ver.txt ) &
|
||||||
|
( fc ver.txt ..\\cur_ver.txt > nul ) &
|
||||||
|
( IF NOT ERRORLEVEL == 0 SET NEED_REBUILD=1 ) &
|
||||||
|
( cd .. )
|
||||||
|
)
|
||||||
|
|
||||||
|
- IF NOT EXIST "Nim\\bin\\nim.exe" SET NEED_REBUILD=1
|
||||||
|
- IF NOT EXIST "Nim\\bin\\nimble.exe" SET NEED_REBUILD=1
|
||||||
|
|
||||||
|
# after building nim, wipe csources to save on cache space
|
||||||
|
- IF DEFINED NEED_REBUILD (
|
||||||
|
cd Nim &
|
||||||
|
( IF EXIST "csources" rmdir /s /q csources ) &
|
||||||
|
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 &
|
||||||
|
git rev-parse HEAD > ver.txt &
|
||||||
|
rmdir /s /q csources
|
||||||
|
)
|
||||||
|
|
||||||
build_script:
|
build_script:
|
||||||
- cd C:\projects\%APPVEYOR_PROJECT_SLUG%
|
- cd C:\projects\%APPVEYOR_PROJECT_SLUG%
|
||||||
- nimble install -y
|
- nimble install -y
|
||||||
|
|
53
.travis.yml
53
.travis.yml
|
@ -1,29 +1,14 @@
|
||||||
language: c # or other C/C++ variants
|
language: c # or other C/C++ variants
|
||||||
|
|
||||||
# https://docs.travis-ci.com/user/caching/
|
# https://docs.travis-ci.com/user/caching/
|
||||||
|
#
|
||||||
|
# Caching the whole nim folder is better than relying on ccache - this way, we
|
||||||
|
# skip the expensive bootstrap process and linking
|
||||||
cache:
|
cache:
|
||||||
directories:
|
directories:
|
||||||
- nim
|
- nim
|
||||||
- rocksdb
|
- rocksdb
|
||||||
|
|
||||||
install:
|
|
||||||
# build nim from our own branch, to avoid downtime due to nim regressions
|
|
||||||
- "export NIMVER=$(git ls-remote https://github.com/status-im/nim.git HEAD | cut -f 1)"
|
|
||||||
- "{ [ -f nim/$NIMVER/bin/nim ] && [ -f nim/$NIMVER/bin/nimble ] ; } || { rm -rf nim ; mkdir -p nim; git clone https://github.com/status-im/nim.git nim/$NIMVER; cd nim/$NIMVER; sh build_all.sh; cd ../.. ; }"
|
|
||||||
- "export PATH=$PWD/nim/$NIMVER/bin:$PATH"
|
|
||||||
|
|
||||||
# build our own rocksdb to test with a fixed version that we think works
|
|
||||||
- "export ROCKSDBVER=5.14.2"
|
|
||||||
- "[ -f rocksdb/rocksdb-$ROCKSDBVER/Makefile ] || { rm -rf rocksdb ; mkdir -p rocksdb; cd rocksdb; wget https://github.com/facebook/rocksdb/archive/v$ROCKSDBVER.tar.gz && tar xvf v$ROCKSDBVER.tar.gz; cd ..; }"
|
|
||||||
- cd rocksdb/rocksdb-$ROCKSDBVER
|
|
||||||
- "[ -f util/build_version.cc ] || { make util/build_version.cc ; }" # use cached version if possible
|
|
||||||
- export NO_UPDATE_BUILD_VERSION=1
|
|
||||||
- make shared_lib -j$NPROC && sudo make install-shared
|
|
||||||
- cd ../..
|
|
||||||
|
|
||||||
script:
|
|
||||||
- nimble install -y && nimble test
|
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- os: linux
|
- os: linux
|
||||||
|
@ -36,3 +21,35 @@ matrix:
|
||||||
- export INSTALL_PATH=$HOME # included in DYLD_FALLBACK_LIBRARY_PATH
|
- export INSTALL_PATH=$HOME # included in DYLD_FALLBACK_LIBRARY_PATH
|
||||||
- export NPROC=$(sysctl -n hw.ncpu)
|
- export NPROC=$(sysctl -n hw.ncpu)
|
||||||
|
|
||||||
|
install:
|
||||||
|
# build nim from our own branch - this to avoid the day-to-day churn and
|
||||||
|
# regressions of the fast-paced Nim development while maintaining the
|
||||||
|
# flexibility to apply patches
|
||||||
|
#
|
||||||
|
# check version of remote branch
|
||||||
|
- "export NIMVER=$(git ls-remote https://github.com/status-im/nim.git HEAD | cut -f 1)"
|
||||||
|
|
||||||
|
# after building nim, wipe csources to save on cache space
|
||||||
|
- "{ [ -f nim/$NIMVER/bin/nim ] && [ -f nim/$NIMVER/bin/nimble ] ; } ||
|
||||||
|
{ rm -rf nim ;
|
||||||
|
mkdir -p nim ;
|
||||||
|
git clone --depth=1 https://github.com/status-im/nim.git nim/$NIMVER ;
|
||||||
|
cd nim/$NIMVER ;
|
||||||
|
sh build_all.sh ;
|
||||||
|
rm -rf csources ;
|
||||||
|
cd ../.. ;
|
||||||
|
}"
|
||||||
|
- "export PATH=$PWD/nim/$NIMVER/bin:$PATH"
|
||||||
|
|
||||||
|
# build our own rocksdb to test with a fixed version that we think works
|
||||||
|
- "export ROCKSDBVER=5.14.2"
|
||||||
|
- "[ -f rocksdb/rocksdb-$ROCKSDBVER/Makefile ] || { rm -rf rocksdb ; mkdir -p rocksdb; cd rocksdb; wget https://github.com/facebook/rocksdb/archive/v$ROCKSDBVER.tar.gz && tar xvf v$ROCKSDBVER.tar.gz; cd ..; }"
|
||||||
|
- cd rocksdb/rocksdb-$ROCKSDBVER
|
||||||
|
- "[ -f util/build_version.cc ] || { make util/build_version.cc ; }" # use cached version if possible
|
||||||
|
- export NO_UPDATE_BUILD_VERSION=1
|
||||||
|
- make shared_lib -j$NPROC && sudo make install-shared
|
||||||
|
- cd ../..
|
||||||
|
|
||||||
|
script:
|
||||||
|
- nimble install -y
|
||||||
|
- nimble test
|
||||||
|
|
|
@ -1,14 +1,14 @@
|
||||||
# Nimbus: an Ethereum 2.0 Sharding Client for Resource-Restricted Devices
|
# Nimbus: an Ethereum 2.0 Sharding Client for Resource-Restricted Devices
|
||||||
|
|
||||||
[![Build Status (Travis)](https://img.shields.io/travis/status-im/nimbus/master.svg?label=Linux%20/%20macOS "Linux/macOS build status (Travis)")](https://travis-ci.org/status-im/nimbus)
|
[![Build Status (Travis)](https://img.shields.io/travis/status-im/nimbus/master.svg?label=Linux%20/%20macOS "Linux/macOS build status (Travis)")](https://travis-ci.org/status-im/nimbus)
|
||||||
[![Windows build status (Appveyor)](https://img.shields.io/appveyor/ci/jarradh/nimbus/master.svg?label=Windows "Windows build status (Appveyor)")](https://ci.appveyor.com/project/jarradh/nimbus)[![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
|
[![Windows build status (Appveyor)](https://img.shields.io/appveyor/ci/nimbus/nimbus/master.svg?label=Windows "Windows build status (Appveyor)")](https://ci.appveyor.com/project/nimbus/nimbus)[![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
|
||||||
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
|
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)
|
||||||
![Stability: experimental](https://img.shields.io/badge/stability-experimental-orange.svg)
|
![Stability: experimental](https://img.shields.io/badge/stability-experimental-orange.svg)
|
||||||
|
|
||||||
Join the Status community chats:
|
Join the Status community chats:
|
||||||
[![Gitter: #status-im/nimbus](https://img.shields.io/badge/gitter-status--im%2Fnimbus-orange.svg)](https://gitter.im/status-im/nimbus)
|
[![Gitter: #status-im/nimbus](https://img.shields.io/badge/gitter-status--im%2Fnimbus-orange.svg)](https://gitter.im/status-im/nimbus)
|
||||||
[![Riot: #dev-status](https://img.shields.io/badge/riot-%23dev--status%3Astatus.im-orange.svg)](https://chat.status.im/#/room/#dev-status:status.im)
|
|
||||||
[![Riot: #nimbus](https://img.shields.io/badge/riot-%23nimbus%3Astatus.im-orange.svg)](https://chat.status.im/#/room/#nimbus:status.im)
|
[![Riot: #nimbus](https://img.shields.io/badge/riot-%23nimbus%3Astatus.im-orange.svg)](https://chat.status.im/#/room/#nimbus:status.im)
|
||||||
|
[![Riot: #dev-status](https://img.shields.io/badge/riot-%23dev--status%3Astatus.im-orange.svg)](https://chat.status.im/#/room/#dev-status:status.im)
|
||||||
|
|
||||||
|
|
||||||
## Rationale
|
## Rationale
|
||||||
|
|
Loading…
Reference in New Issue