nostrdb

an unfairly fast embedded nostr database backed by lmdb
git clone git://jb55.com/nostrdb
Log | Files | Refs | Submodules | README | LICENSE

appveyor.yml (758B)


      1 version: "win#{build}"
      2 
      3 image: Visual Studio 2015
      4 
      5 init:
      6   - git config --global core.autocrlf input
      7   - cmake --version
      8   - msbuild /version
      9 
     10 shallow_clone: true
     11 
     12 clone_folder: c:\projects\flatcc
     13 
     14 platform:
     15   - Win32 
     16   - x64
     17 
     18 configuration:
     19   - Debug
     20   - Release
     21 
     22 skip_tags: true
     23 
     24 before_build:
     25   - echo Running cmake...
     26   - cd c:\projects\flatcc
     27   - mkdir build\MSVC
     28   - cd build\MSVC
     29   - if "%platform%"=="Win32" cmake -G "Visual Studio 14 2015" -DCMAKE_BUILD_TYPE=%configuration% ..\..
     30   - if "%platform%"=="x64" cmake -G "Visual Studio 14 2015 Win64" -DCMAKE_BUILD_TYPE=%configuration% ..\..
     31 
     32 build:
     33   parallel: true # enable MSBuild parallel builds
     34   project: c:\projects\flatcc\build\MSVC\FlatCC.sln
     35 
     36 test_script:
     37   - ctest -C "%configuration%" -VV
     38