summaryrefslogtreecommitdiff
path: root/appveyor.yml
AgeCommit message (Collapse)AuthorFilesLines
2016-09-13appveyor: Update winflexbison download URL.Jose Fonseca1-1/+1
This particular version got moved into a `old_versions` subdirectory.
2016-08-11appveyor: Force Visual Studio 2013 image.Jose Fonseca1-0/+2
It seems the default build image is now Visual Studio 2015, and Visual Studio 2013 is not installed.
2016-08-11appveyor: Install pywin32 extensions.Jose Fonseca1-0/+2
AppVeyor build images seem to have been upgraded to Python 2.7.12, but no longer have pywin32 pre-installed.
2016-04-14appveyor: Run unit tests.Jose Fonseca1-0/+3
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
2016-02-03appveyor: Bump shallow clone depth.Jose Fonseca1-2/+9
To prevent build failures when a large patch series is committed, like happened in https://ci.appveyor.com/project/jrfonseca-fdo/mesa/build/322 due to 10 commits between dac2964f3ebd96d5ac227984ab0cd79c2c3b2a1a and 6f428328d34bed16edb8709e4a117eb710d7893d where submitted before the build slave started the git clone. 100 commits should be bigger than any patch series seen in practice, and it takes practically the same time to download as 5 commits. Reviewed-by: Roland Scheidegger <sroland@vmware.com>
2015-12-08appveyor: Cache winflexbison archive.Jose Fonseca1-3/+7
Unforunately the Appveyor -> SourceForge connection seems a bit unreliable, causing frequent build failures while downloading winflexbison (approx once every 2 days). Fetching winflexbison archive into Appveyor's cache should eliminate these. Fetching Python modules from PyPI doesn't seem to be a problem, so they are left alone for now, though they could eventually get the same treatment.
2015-12-02appveyor: Initial integration.Jose Fonseca1-0/+62
AppVeyor doesn't require an appveyor.yml in the repos (in fact it has some limitations as noted in comments below), but doing so has two great advantages over the web UI: - appveyor.yml can be revisioned together with the code, so instructions should always be in synch with the code - appveyor.yml can be reused for people's private repositories (be on fdo or GitHub, etc.) Acked-by: Roland Scheidegger <sroland@vmware.com>