Edgewall Software

Changes between Version 4 and Version 5 of AppVeyor


Ignore:
Timestamp:
Jan 17, 2016, 8:32:16 AM (8 years ago)
Author:
figaro
Comment:

Cosmetic changes

Legend:

Unmodified
Added
Removed
Modified
  • AppVeyor

    v4 v5  
    11= !AppVeyor - Continuous Integration service for Windows
    22
    3 //[http://www.appveyor.com/ AppVeyor] aims to give powerful Continuous Integration and Deployment tools to every .NET developer without the hassle of setting up and maintaining their own build server.//
     3!AppVeyor is a continuous integration service for Windows. From their website:
     4
     5 //[http://www.appveyor.com/ AppVeyor] aims to give powerful Continuous Integration and Deployment tools to every .NET developer without the hassle of setting up and maintaining their own build server.//
    46
    57They offer their service free of charge for Open Source projects, like Trac.
    68
    7 We use it for automating our builds on Windows (see TracDev/AutomaticBuilds for the other automated build services we use).
     9We use it for automating our builds on Windows. See TracDev/AutomaticBuilds for the other automated build services we use.
    810
    911It works together with the git repositories hosted on GitHub, like our mirror and their forks:
    10  - Builds for the [https://ci.appveyor.com/project/edgewall/trac Trac mirror] (not yet active)
     12 - Builds for the [https://ci.appveyor.com/project/edgewall/trac Trac mirror] (not yet active).
    1113 - Builds for developer branches:
    12    [https://ci.appveyor.com/project/cboos/trac cboos], ...
     14   [https://ci.appveyor.com/project/cboos/trac cboos], ... .
    1315
    1416== Settings
     
    2628Another useful tip is that a build [http://www.appveyor.com/docs/how-to/skip-build can be skipped] if the last changeset pushed contains `[skip ci]` in its commit log message.
    2729
    28 
    2930== Known issues
    3031
     
    3334There are still a number of test issues only seen on !AppVeyor that need to be resolved before getting a "green" build, mostly SQLite related.
    3435
    35 See all [kwquery:appveyor] related tickets.
     36See all [kwquery:appveyor related tickets].
    3637
    37 Note that if you're on Windows, you can reproduce the build locally the same way AppVeyor would do it, from a !PowerShell console.
     38Note that if you are on Windows, you can reproduce the build locally the same way AppVeyor would do it, from a !PowerShell console.
    3839
    39 Note that you may need to first enable sourcing local scripts, in that shell.
     40Note that you may need to first enable sourcing local scripts, in that shell:
    4041
    4142{{{#!ps1
     
    4647> $env:TEST_TRAC_DB_URI = 'sqlite:test.py' # example
    4748> $env:APPVEYOR_REPO_BRANCH = '1.0-stable'
    48 > $DebugPreference = "Continue" # in order to see the Appveyor API calls
     49> $DebugPreference = "Continue"            # to see the Appveyor API calls
    4950> Trac-Install
    5051> Trac-Build
     
    5253}}}
    5354
    54 
    5555=== Project not building
    5656
    57 It can happen that the build won't trigger, and no matter what you do about it, the jobs stay in the "queued" state for ever instead of just a few minutes.
     57It can happen that the build won't trigger, and no matter what you do about it, the jobs stay in the "queued" state forever instead of just a few minutes.
    5858
    5959If this happens, [mailto:team@appveyor.com ask the support] to do a global reset on the project. They're very friendly and responsive.