aboutsummaryrefslogtreecommitdiff
path: root/.appveyor.yml
AgeCommit message (Collapse)AuthorFilesLines
2017-06-10tests: Add Boost unit tests and project tests on WindowsNirbheek Chauhan1-0/+2
Boost tests are disabled on Windows for now because the detection is actually completely broken. Once that's fixed (after the release) we can enable it again.
2017-05-21Give each coverage build a unique name.Elliott Sales de Andrade1-1/+1
Travis builds are currently build number (123.1, 123.2, etc.) and AppVeyor is some random string, making it hard to determine which builds cover what.
2017-05-21Enable code coverage on AppVeyor.Elliott Sales de Andrade1-6/+18
* Install pip on msys (which doesn't have it) * Install codecov/coverage everywhere. * Generate coverage XML file manually because codecov tries to call the coverage script itself and it's in a weird place on the path.
2017-05-21Use a wrapper script to run tests in Cygwin.Elliott Sales de Andrade1-4/+9
2017-05-11appveyor: Don't run appveyor for docs only changesDylan Baker1-0/+4
Appveyor takes a *long* time to run (~45 minutes per commit currently), and it does no parallelism. It is possible to skip merge requests that only touch documentation, this commit adds that support. Because Appveyor (and Travis) test a merge of the pull request into master and not the branch itself this will only skip builds that only touch docs, and not pull requests that do both doc and non-doc changes.
2017-04-29Don't prefix appveyor build number with a meaningless '1.0'Jon Turney1-1/+1
2017-04-09appveyor.yml: Move cygwin and mingw up the listNirbheek Chauhan1-9/+9
They are the 'weird' platforms, so we want them to be run first. That way we don't have to wait for all the other tests before finding out that something broke.
2017-04-07Add Cygwin/x86_64 to AppVeyor CI matrixJon Turney1-2/+13
Install ninja and packages needed for tests Don't bother with x86 for speed and reliability reasons
2017-03-28appveyor: Move msys2-mingw matrix a little higherNirbheek Chauhan1-4/+4
Allows us to see failures in it sooner because it will be run earlier
2017-03-28appveyor: run tests against MSYS2-MinGWMike Sinkovsky1-0/+9
2017-03-27appveyor: Only build vs2010/x86 + vs2015/x86 + vs2017/x64Nirbheek Chauhan1-18/+0
This reduces our CI running time by roughly half without compromising much test coverage by much. We can mostly safely assume that very few Meson bugs will be arch-specific with Visual Studio.
2017-03-22appveyor: use vs2017 backend for msvc2017 compilerNicolas Schneider1-2/+2
2017-03-22add appveyor config for VS2017Nicolas Schneider1-0/+21
The 'Visual Studio 2017' image does not include VS2010, so we have to use the 'Visual Studio 2015' image by default and only use the 2017 image for msvc2017 compiler tests.
2017-03-18One is zero. War is peace. Freedom is slavery.Jussi Pakkanen1-1/+1
2017-03-15Update Ninja download url due to Dropbox changes.Jussi Pakkanen1-1/+1
2017-01-23No longer require a binary called python3 on Windows. The default name is ↵Jussi Pakkanen1-2/+1
"python".
2016-11-10appveyor.yml: Use x86 python only on x86Nirbheek Chauhan1-4/+8
It causes the cpython tests to fail when using the x86_64 toolchain. tachyon_module.c.obj : error LNK2019: unresolved external symbol __imp_PyLong_FromLong referenced in function phaserize tachyon_module.c.obj : error LNK2019: unresolved external symbol __imp_PyArg_ParseTuple referenced in function phaserize tachyon_module.c.obj : error LNK2019: unresolved external symbol __imp_PyModule_Create2 referenced in function PyInit_tachyon c:\\python34/libs\python34.lib : warning LNK4272: library machine type 'X86' conflicts with target machine type 'x64' ext/tachyon.pyd : fatal error LNK1120: 3 unresolved externals
2016-11-10appveyor.yml: Print versions of MSBuild and NinjaNirbheek Chauhan1-0/+1
This is useful to know what MSBuild.exe and Ninja we are using and whether the correct one has been set via PATH by vcvarsall.bat and hasn't been overwritten by appveyor.
2016-11-10appveyor.yml: Test more than just MSVC2010 + Ninja on x86Nirbheek Chauhan1-5/+33
Now we test: MSVC 2010 + Ninja (x86) MSVC 2015 + Ninja (x86) MSVC 2015 + Ninja (x86_64) MSVC 2010 + MSBuild (x86) MSVC 2015 + MSBuild (x86) MSVC 2015 + MSBuild (x86_64) MSVC 2010 Express only shipped with an x86 toolchain, so we can only test x86 for that.
2016-09-29Fix PATH setting in AppVeyor.Elliott Sales de Andrade1-1/+1
Without the trailing semicolon, an errant space is inserted into the last directory entry.
2016-09-29Upload test logs as artifacts on AppVeyor.Elliott Sales de Andrade1-0/+4
2016-09-28Use Python provided by Appveyor environment.Jussi Pakkanen1-2/+0
2016-06-13Finish appveyor integration by moving static library in a subdir to avoid ↵Jussi Pakkanen1-2/+0
clashes.
2016-06-13Explicitly add python dir to path so it is found.Jussi Pakkanen1-1/+1
2016-06-13Print full log when failures happen under Appveyor.Jussi Pakkanen1-3/+0
2016-06-13Call setenv so hopefully Visual Studio tools will be in path.Jussi Pakkanen1-0/+1
2016-06-13More random appveyor poking.Jussi Pakkanen1-3/+3
2016-06-13Random debugging command thingy.Jussi Pakkanen1-1/+2
2016-06-13Copy ninja.exe to Python dir so it hopefully appears in path.Jussi Pakkanen1-0/+10
2016-06-13Added Appveyor config file.Jussi Pakkanen1-0/+16