summaryrefslogtreecommitdiff
path: root/.travis.yml
Commit message (Collapse)AuthorAgeFilesLines
* travis: add another stage to really run everything under ASan+UBsanEvgeny Vereshchagin2018-12-241-0/+7
| | | | | This should help to catch issues like https://github.com/systemd/systemd/issues/11253 and https://github.com/systemd/systemd/issues/11251.
* travis: switch to Debian TestingEvgeny Vereshchagin2018-12-241-38/+20
| | | | | Turns out Fedora is the least stable distribution in terms of downloading packages. Debian is much more stable so let's use it.
* travis: use xenial instead of trustyEvgeny Vereshchagin2018-12-231-0/+1
| | | | | This should also fix an issue mentioned in https://github.com/systemd/systemd/pull/11196#issuecomment-448123946.
* travis: also compile systemd on Debian TestingEvgeny Vereshchagin2018-12-071-0/+18
| | | | This should help to catch issues like https://github.com/systemd/systemd/issues/11075
* travis: also run the tests built with clang under ASan+UBsanEvgeny Vereshchagin2018-12-041-0/+18
|
* travis: also build systemd with clangEvgeny Vereshchagin2018-12-011-0/+18
|
* travis: use latest instead of rawhideEvgeny Vereshchagin2018-12-011-4/+4
|
* travis: run ASan job in parallel with the standard oneFrantisek Sumsal2018-11-081-2/+1
|
* travis: move the ASan part into a separate stageEvgeny Vereshchagin2018-11-081-0/+19
|
* travis: make the directory with coverity tools available in a containerEvgeny Vereshchagin2018-11-071-2/+2
| | | | | | | | | Otherwise `coverity.sh build` will fail with ``` find: '/var/tmp/coverity-scan-analysis': No such file or directory ``` See https://travis-ci.org/systemd/systemd/jobs/451683385.
* travis: overwrite test-capability with a simple script that is just skippedEvgeny Vereshchagin2018-11-071-4/+1
| | | | | so that it will be possible to work on the test failure and try to make Travis CI work at the same time.
* travis: run Coverity on a more stable Fedora releaseFrantisek Sumsal2018-11-061-1/+1
|
* travis: move Docker setup to a separate scriptFrantisek Sumsal2018-11-061-23/+12
| | | | This should make debugging somewhat easier
* travis: rewrite .travis.yml and re-enable Travis CI for FedoraFrantisek Sumsal2018-11-061-62/+78
|
* Merge pull request #9193 from keszybz/coverityLennart Poettering2018-06-141-1/+1
|\ | | | | Coverity support for glibc-2.27
| * travis: add defines for _Float64/_Float64x/_Float32/_Float32xZbigniew Jędrzejewski-Szmek2018-06-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | $ build/test-sizeof ... _Float128 → 128 bits, signed _Float64 → 64 bits, signed _Float64x → 128 bits, signed _Float32 → 32 bits, signed _Float32x → 64 bits, signed ... This seems to be enough to make coverity work with glibc-2.27 found in Fedora 28+.
* | travis: stop sending notifications to the authors of randomly chosen commitsEvegeny Vereshchagin2018-06-071-1/+0
|/
* travis: use Travis CI only for running scheduled Coverity scansMichal Sekletar2018-06-041-112/+8
| | | | | Building and testing of systemd on Fedora Rawhide is now handled by dedicated Fedora CI. We don't need to duplicate this in Travis CI.
* Enable ccache and mount it into the build/test container.Omer Katz2018-05-221-2/+4
|
* Rename scripts/coverity.sh to tools/coverity.shZbigniew Jędrzejewski-Szmek2018-03-121-1/+1
| | | | | There are only two files in tools/, I don't think we need a separate directory for them.
* Integration of Travis CI and Coverity Scan Analysis (#7691)Marek Čermák2018-01-111-8/+174
| | | | | | | | | | | | - Coverity scan analysis tasks run as scheduled cron jobs - Stage separation for Build, Test and Coverity scan phase - Travis CI now uses Fedora container to build and run tests - Containers are accessible from Docker Hub and failed builds can be reproduced and examined - coverity.sh: separate build and upload
* remove gudev and gtk-docKay Sievers2015-06-031-2/+2
| | | | | The library moved to: https://git.gnome.org/browse/libgudev/
* mount: use libmount to enumerate /proc/self/mountinfoChris Leech2014-11-281-1/+1
| | | | | This lets libmount add in user options from /run/mount/utab, like _netdev which is needed to get proper ordering against remote-fs.target
* test: Make testing work on systems without or old systemdHolger Hans Peter Freyther2013-08-221-2/+3
| | | | | | | | | | | | | | * Introduce a macro to conditionally execute tests. This avoids skipping the entire test if some parts require systemd * Skip the journal tests when no /etc/machine-id is present * Change test-catalog to load the catalog from the source directory of systemd. * /proc/PID/comm got introduced in v2.6.33 but travis is still using v2.6.32. * Enable make check and make distcheck on the travis build * Use -D"CATALOG_DIR=STR($(abs_top_srcdir)/catalog)" as a STRINGIY would result in the path '/home/ich/source/linux' to be expanded to '/home/ich/source/1' as linux is defined to 1.
* travis: Add a travis.yml for doing CI after commitsHolger Hans Peter Freyther2013-07-151-0/+13
Instruct travis-ci to build systemd and create a tarball. In case of an error travis-ci will complain on IRC. The systemd testsuite currently requires the host to have a recent version of systemd installed and running. This is not the case for the Ubuntu VM of travis-ci. This means make check and make distcheck will result in a build failure and to avoid this these commands are not executed. This requires a one time configuration on travis-ci for the repo on github by the owner of the repo.