51 lines
1.7 KiB
YAML
51 lines
1.7 KiB
YAML
version: '{build}'
|
|
|
|
image: Visual Studio 2015
|
|
|
|
cache:
|
|
- nimbus-deps.zip -> .appveyor.yml
|
|
- NimBinaries
|
|
|
|
matrix:
|
|
# We always want 32 and 64-bit compilation
|
|
fast_finish: false
|
|
|
|
platform:
|
|
- x86
|
|
- x64
|
|
|
|
# when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X"
|
|
clone_depth: 10
|
|
|
|
install:
|
|
- SET "ROCKSDB_URL=https://github.com/status-im/nimbus-deps/releases/download/nimbus-deps/nimbus-deps.zip"
|
|
- SET "ROCKSDB_ARCHIVE=nimbus-deps.zip"
|
|
|
|
# use the newest versions documented here: https://www.appveyor.com/docs/windows-images-software/#mingw-msys-cygwin
|
|
- IF "%PLATFORM%" == "x86" SET PATH=C:\mingw-w64\i686-6.3.0-posix-dwarf-rt_v5-rev1\mingw32\bin;%PATH%
|
|
- IF "%PLATFORM%" == "x64" SET PATH=C:\mingw-w64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;%PATH%
|
|
|
|
- MKDIR %CD%\bin
|
|
- SET PATH=%CD%\bin;%CD%\Nim\bin;%PATH%
|
|
|
|
# Unpack rocksdb
|
|
- IF not exist "%ROCKSDB_ARCHIVE%" appveyor DownloadFile "%ROCKSDB_URL%" -FileName "%ROCKSDB_ARCHIVE%"
|
|
- 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 )
|
|
|
|
# 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
|
|
- curl -O -L -s -S https://raw.githubusercontent.com/status-im/nimbus-build-system/master/scripts/build_nim.sh
|
|
- env MAKE="mingw32-make -j2" ARCH_OVERRIDE=%PLATFORM% bash build_nim.sh Nim csources dist/nimble NimBinaries
|
|
|
|
build_script:
|
|
- cd C:\projects\%APPVEYOR_PROJECT_SLUG%
|
|
- bash -c "nimble install -y"
|
|
|
|
test_script:
|
|
- nimble test
|
|
|
|
deploy: off
|
|
|