💾 Archived View for gmi.noulin.net › gitRepositories › md4c › file › appveyor.yml.gmi captured on 2024-08-18 at 18:50:13. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2023-01-29)

-=-=-=-=-=-=-

md4c

Log

Files

Refs

README

LICENSE

appveyor.yml (555B)

     1 # YAML definition for Appveyor.com continuous integration.
     2 # See http://www.appveyor.com/docs/appveyor-yml
     3 
     4 version: '{branch}-{build}'
     5 
     6 before_build:
     7   - 'cmake --version'
     8   - 'if "%PLATFORM%"=="x64" cmake -G "Visual Studio 12 Win64"'
     9   - 'if not "%PLATFORM%"=="x64" cmake -G "Visual Studio 12"'
    10 
    11 build:
    12   project: md4c.sln
    13   verbosity: minimal
    14 
    15 skip_tags: true
    16 
    17 os:
    18   - Windows Server 2012 R2
    19 
    20 configuration:
    21   - Debug
    22   - Release
    23 
    24 platform:
    25   - x64    # 64-bit build
    26   - win32  # 32-bit build
    27 
    28 artifacts:
    29   - path: $(configuration)/md2html/md2html.exe