Edit

kc3-lang/md4c/appveyor.yml

Branch :

  • Show log

    Commit

  • Author : Martin Mitas
    Date : 2019-02-13 12:27:21
    Hash : 30cfd4e3
    Message : appveyor.yml: Fix syntax.

  • appveyor.yml
  • # YAML definition for Appveyor.com continuous integration.
    # See http://www.appveyor.com/docs/appveyor-yml
    
    version: '{branch}-{build}'
    
    before_build:
      - 'cmake --version'
      - 'if "%PLATFORM%"=="x64" cmake -G "Visual Studio 12 Win64" .'
      - 'if not "%PLATFORM%"=="x64" cmake -G "Visual Studio 12" .'
    
    build:
      project: md4c.sln
      verbosity: detailed
    
    skip_tags: true
    
    os:
      - Windows Server 2012 R2
    
    configuration:
      - Debug
      - Release
    
    platform:
      - x64    # 64-bit build
      - win32  # 32-bit build
    
    artifacts:
      - path: $(configuration)/md2html/md2html.exe