summaryrefslogtreecommitdiff
path: root/.travis.yml
AgeCommit message (Collapse)AuthorFilesLines
2018-08-07tox: Add python 3.7 to build matrixRhys Kidd1-0/+3
Signed-off-by: Rhys Kidd <rhyskidd@gmail.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
2018-07-19tox: Remove testing of end-of-life Python 3.3Rhys Kidd1-2/+0
Python 3.3 reached end-of-life in September 2017 [0]. Continuous integration testing has identified a number of dependencies are now failing on python 3.3, such as: Collecting wheel wheel requires Python '>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*' but the running Python is 3.3.6 ... OSError: Command /home/travis/build/E...generator/bin/python - setuptools pip wheel failed with error code 1 [0] https://www.python.org/dev/peps/pep-0398/#x-end-of-life Signed-off-by: Rhys Kidd <rhyskidd@gmail.com> Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
2018-02-06travis: add docker based cmake build jobAndres Gomez1-3/+44
Until now we were only running the python unit tests. It seems desirable to also check that the CMake based build compiles successfully. We do that now using docker. The docker build can be tweaked with some environment variables and, also, be stored in the docker hub if desired. Check the changes for extra details regarding these variables. v2: Removed other build possibilities other than just from inside Travis-CI, as suggested by Juan. v3: Replaced the "RELEASE" parameter to create the docker image with "PARENT" and removed some unneeded documentation after v2, as suggested by Juan. v4: - Use DOCKER_PARENT, DOCKER_IMAGE and DOCKER_TAG variables from the custom Travis-CI setup to define the PARENT, IMAGE and TAG parameters during the docker image creation. - Upload the image only if DOCKER_IMAGE and DOCKER_TAG are set. Cc: Dylan Baker <dylan@pnwbakers.com> Cc: Juan A. Suarez <jasuarez@igalia.com> Signed-off-by: Andres Gomez <agomez@igalia.com> Reviewed-by: Juan A. Suarez <jasuarez@igalia.com> Acked-by: Eric Anholt <eric@anholt.net> Acked-by: Dylan Baker <dylan@pnwbakers.com>
2017-12-19travis: add generator unittestsAndres Gomez1-5/+5
Cc: Dylan Baker <dylanx.c.baker@intel.com> Cc: Juan A. Suarez Romero <jasuarez@igalia.com> Signed-off-by: Andres Gomez <agomez@igalia.com> Reviewed-by: Dylan Baker <dylan@pnwbakers.com> Reviewed-by: Juan A. Suarez <jasuarez@igalia.com>
2017-01-19CI: Add python 3.6 to build matrixDylan Baker1-6/+12
2016-09-09tox: add a streams target.Dylan Baker1-4/+4
Also enables the target in travis and appveyor. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
2016-08-03travis: combine noaccel and accel profilesDylan Baker1-8/+4
Acquiring the VM's to run the tests is the single most time consuming part of the travis process, to reduce the amount of turn around combine the noaccel and accel profiles, so that a test is run per python version rather than per profile. Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
2016-06-02travis: Add travis.yml for python codeDylan Baker1-0/+16
For testing the framework with travis Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>