nim-snappy/.appveyor.yml

49 lines
1.4 KiB
YAML
Raw Normal View History

2018-11-02 05:10:58 +00:00
version: '{build}'
2019-08-24 16:30:34 +00:00
image: Visual Studio 2015
2018-11-02 05:10:58 +00:00
cache:
2019-08-24 16:30:34 +00:00
- NimBinaries
2018-11-02 05:10:58 +00:00
matrix:
# We always want 32 and 64-bit compilation
fast_finish: false
platform:
- x86
- x64
2019-08-24 16:30:34 +00:00
# when multiple CI builds are queued, the tested commit needs to be in the last X commits cloned with "--depth X"
clone_depth: 10
2018-11-02 05:10:58 +00:00
2019-08-24 16:30:34 +00:00
install:
# 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%
2018-11-02 05:10:58 +00:00
2019-08-24 16:30:34 +00:00
# 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
- SET PATH=%CD%\Nim\bin;%PATH%
2018-11-02 05:10:58 +00:00
2020-03-28 04:51:04 +00:00
- git clone --depth 1 https://github.com/google/snappy snappycpp
2018-11-02 14:00:58 +00:00
2018-11-02 05:10:58 +00:00
build_script:
2020-03-28 04:51:04 +00:00
- cd snappycpp
2018-11-02 05:10:58 +00:00
- mkdir build
- cd build
2018-11-02 14:19:53 +00:00
- cmake .. -G "MinGW Makefiles" -DCMAKE_IGNORE_PATH="C:/Program Files/Git/usr/bin"
2018-11-02 05:10:58 +00:00
- mingw32-make
2019-08-24 16:49:48 +00:00
- copy libsnappy.a C:\projects\%APPVEYOR_PROJECT_SLUG%\tests
2018-11-02 14:00:58 +00:00
2018-11-02 05:10:58 +00:00
- cd C:\projects\%APPVEYOR_PROJECT_SLUG%
2019-08-24 16:30:34 +00:00
- nimble install -y
2018-11-02 14:00:58 +00:00
2018-11-02 05:10:58 +00:00
test_script:
- nimble test
deploy: off
2019-08-24 16:30:34 +00:00