Post
Topic
Board Announcements (Altcoins)
Re: [ANN] AEON [2017-04-23: update to 0.9.12.0]
by
xmr_eric
on 29/04/2017, 20:35:45 UTC
Arux/Stoffu (or others):

Would it be possible to create an Appveyor.yml script so we can build the Aeon binaries ourselves using Appveyor.com? They already have Boost/Cmake. I'm not skilled enough to properly write the script myself, but here's an initial take:  Grin

Code:
version: 1.0.{build}
configuration: Release
platform: x64
before_build:

  cd C:\projects\aeon
  
  git checkout v0.9.12.0
  
  mkdir build
  
  cd build
  
  cmake -G "Visual Studio 14 2015 Win64" -DBOOST_ROOT=C:/Libraries/boost_1_63_0 -DBOOST_LIBRARYDIR=C:/Libraries/boost_1_63_0/lib64-msvc-14.0 ..

  ls

build:
  project: C:\projects\aeon\build\Project.sln
  parallel: true
  verbosity: minimal
after_build:
- cmd: 7z a aeon-0.9.12.0.zip C:\projects\aeon\build\src\release\aeond.exe C:\projects\aeon\build\src\release\simplewallet.exe
artifacts:
- path: aeon-0.9.12.0.zip

The above build is failing though: https://paste.fedoraproject.org/paste/LLPA9prvltZLI4~XkCUO8F5M1UNdIGYhyRLivL9gydE=

Maybe because Appveyor only has 4GB RAM...