summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
Commit message (Collapse)AuthorAgeFilesLines
* azure: Install python[23]-devel packages on Cygwinpy2optionalJon Turney2019-10-011-4/+5
| | | | | | | | | Install python[23]-devel packages on Cygwin, so that python tests which require that can run. (Only the default version of python (currently 3.6) provides the /usr/lib/pkgconfig/python3.pc file we are looking for so also update to that version)
* azure: Workaround MSYS2 PCH test failuresNirbheek Chauhan2019-09-011-0/+14
| | | | | | | Compiler version is hard-coded so that we remember to revisit this when the GCC version is updated. Closes https://github.com/mesonbuild/meson/issues/5807
* tests: Detect ninja v1.9 and disable timestamp hackNirbheek Chauhan2019-09-011-1/+0
| | | | | The high-res timestamp PR by QuLogic was merged in v1.9, so we can switch back to upstream ninja.
* add pylint Azure jobMichael Hirsch, Ph.D2019-08-021-0/+15
|
* ci/cygwin: Install pytest-xdist for unit testsNirbheek Chauhan2019-07-251-0/+3
| | | | | | | | The job is taking too long and timing out, use pytest-xdist to speed up unit tests. Speeds it up on my system from 20 min to 8 min. Still much slower than native windows: vs2017-x64 takes 3.5 min with pytest-xdist.
* ci/cygwin: Don't need a special step to install cmakeNirbheek Chauhan2019-07-251-4/+1
|
* azure cygwin cmake 3.14.5Michael Hirsch, Ph.D2019-07-181-2/+2
|
* cmake: use newer CMake version for cygwinDaniel Mensinger2019-06-061-1/+10
|
* Merge pull request #5250 from jon-turney/test-compiler-reportJussi Pakkanen2019-04-201-1/+2
|\ | | | | Add a report of compilers used to run_project_tests.py
| * azure: Fix some places where an unexpected compiler is being picked upJon Turney2019-04-151-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Now we have some information in CI logs about what compiler is actually being used, fix some places where an unexpected compiler is being picked up. Avoid picking up gcc-objc and gfortran from PATH in vs2017 image for VS test runs. Use clang for objc/objc++ in MSYS2 clang test runs, rather than picking up gcc from path. Also install gfortran for fortran tests on Cygwin.
* | Add VS2019 backend CI and docs.Anton Kochkov2019-04-161-0/+23
|/
* azure: Unset BOOST_ROOT for Cygwin, MSYS2 and clang-clJon Turney2019-03-171-0/+2
| | | | | | | | | | | | | It looks like BOOST_ROOT is now set in the azure v2017 image (relevant change seems to be [1], pre-installing boost) Remove BOOST_ROOT from the environment to prevent attempting to use a boost which is incompatible with the compiler. (an MSVC boost should be compatible with clang-cl, but has problems, see c7a3e810) [1] https://github.com/Microsoft/azure-pipelines-image-generation/pull/732
* azure: Fix python3 in vs2017 tasksDaniel Mensinger2019-03-011-0/+5
|
* Launch Meson via python3 so the binary name is correct.Jussi Pakkanen2019-02-261-1/+1
|
* Copy python3.5 to python3 so tests pass on Cygwin.Jussi Pakkanen2019-02-261-0/+1
|
* azure-pipelines: Fix cygwin python3 installationNirbheek Chauhan2019-02-231-2/+2
| | | | | The package has been moved from python3-pip to python3N-pip where N is 5, 6, 7. We use Python 3.5, so let's use that.
* ci/msys2: use the msys2 ninjaChristoph Reiter2019-02-051-1/+1
| | | | msys2 now has ninja 1.9.0 which includes the timestamp fixes
* azure: Add msys2 clang to test matrixJon Turney2018-12-091-2/+11
| | | | | | | | | The clang package depends on the gcc package, so we need to explicitly select the compiler (as the priority order built into meson will prefer gcc to clang) v2: ensure $(MSYS2-ARCH)-pkg-config is installed
* azure-pipelines: install cmake in msys2Christoph Reiter2018-11-271-1/+9
| | | | Recent test changes depend on cmake being available.
* CI: port msys2 jobs from appveyor to azure-pipelinesChristoph Reiter2018-11-261-0/+50
|
* CMake find_package dependency backend (#4444)Daniel Mensinger2018-11-221-0/+1
|
* CI: port cygwin job from appveyor to azure-pipelinesChristoph Reiter2018-11-211-0/+47
|
* azure: Remove unneeded maxParallelJon Turney2018-11-131-2/+0
| | | | Default is unlimited, not 1
* azure: Match release branch names as wellJon Turney2018-11-131-0/+2
|
* azure: Enable vs2015 jobsJon Turney2018-11-131-18/+18
| | | | Don't run MPI runtime installer, which fails with vs2015 image
* azure: Add clang-cl/ninja to matrixJon Turney2018-11-041-0/+4
| | | | Note that Vs2017 tools are also in PATH for llvm build
* Add an azure-pipelines.ymlJon Turney2018-10-141-0/+49
v1: Add an azure-pipelines.yml Don't check source line endings if autocrlf is on Handle origin-only refs in skip_ci Add .py to PATHEXT for the benefit of test_find_program() Publish logs as build artifacts and publish test results v2: Use .gitattributes to override autocrlf Move tmpdir, so it's not a subdir of source directory, otherwise it gets included in line-ending checks. Use serial build numbers, rather than date.dailybuildnumber Workaround for #3239 is no longer needed now a fix has been commited Tweak test results and artefact naming Wait for MS-MPI installers to complete Publish test results even if tests had an error