summaryrefslogtreecommitdiff
path: root/.travis.yml
AgeCommit message (Collapse)Author
2017-04-09Enabled tests for BSD. Added mipsel & mips64elZac Berkowitz
2017-04-09Updated .travis.ymlZac Berkowitz
2017-04-09Added ci templates from `trust` v0.1.1Zac Berkowitz
2017-04-09Removed old ci infrastructure.Zac Berkowitz
2016-12-10Allow failures of 1.7 buildsPhilipp Matthias Schaefer
Libraries we depend on need newer versions of Rust. The current stable release is 1.13. This also disables the CI for the platforms/architectures MIPS, ARM and Android. This cannot be helped as long as the test infrastructure only runs on 1.7.
2016-11-15Fail on beta builds again.Philipp Matthias Schaefer
Fixes #435
2016-10-24ci: drop official support for rustc < 1.7.0Paul Osborne
Supporting older verisons of rust is causing CI to fail and is a somewhat constant support burden with questionable value. 1.7.0 is the oldest I have seen that people have had a requirement on supporting in recent history. It may make sense to work toward a more official policy on what version of rust we will support in the future. Users of older version of rust are, of course, welcome to use older versions of nix and everything else in the ecosystem. Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-10-22Temporarily allow beta failures till 1.13.0-beta.3 or later is releasedPhilipp Matthias Schaefer
2016-08-05No longer support Rust 1.1Philipp Matthias Schaefer
2016-07-12ci: only attempt travis-cargo under linuxPaul Osborne
Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-07-10ci: push docs to gh-pages and code cov to coverallsPaul Osborne
This moves things around a fair bit in the .travis.yml to be more logically ordered and adds support for publishing docs (on master) to gh-pages. Code coverage is also calculated and published to coveralls.io. Travis is able to write to gh-pages on the github repository via the GH_TOKEN environment variable stored in the travis settings (marked as private). This token is generated from the github user 'rust-nix-bot' in order to avoid given access to other repos associated with an actual user's account (this practice is recommended by Github). Other changes worth noting: - We now test fewer intermediate versions of rust - The existing logic to publish to Carl's S3 bucket have been removed. Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-05-26Fix deployment of docs from travis.Justin Latimer
2016-05-11Fix a typo in travis config.Justin Latimer
2016-03-21testing: failing on arm is no longer an allowed failure!Paul Osborne
Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-03-17travis: add back testing on all rust versions (for linux)Paul Osborne
We are using containers for a majority of builds again, so perform those builds on more platforms (as travis seems to handle this much better). For OSX, we now testing i686/x86_64 on 1.1.0 as well for added coverage. Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-03-17travis: only require sudo on docker/i686 buildsPaul Osborne
Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-03-13testing: docker tests now work on travisPaul Osborne
All of the platforms tested currently fail in some way currently, but the infrastructure itself appears to be working. As we have moved to the legacy infrastructure (required in order to use docker), the tests do run slower now. To compensate for that, i686 builds are only done on stable and we do not test every version between the current stable and the oldest version we support. Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-03-13testing: first shot at testing with travis for arm, mips, android, ...Paul Osborne
This is based on libc and the new docker-based testing infrastructure via posborne/rust-cross. Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-03-05testing: increase stability by removing thread parallelismPaul Osborne
Currently, several of the tests are failing intermittently. After some research it appears that these failures only occur when thread parallelism is enabled (as is the case by default). To test, I just ran the failing tests over and over. I would consistently see errors when running the following: $ while true; do target/debug/test-7ec4d9681e812f6a; done When I forced single threaded execution, I no longer saw failures: $ while true; do RUST_TEST_THREADS=1 target/debug/test-7ec4d9681e812f6a; done I was mostly looking at the test_unistd failures which make calls out to fork() and then make subsequent calls to wait(). In that case there is one parent and the wait() called could (and frequently does) get some random child pid back because it just happened to terminate. That is why when one of the test fails so does the other one. I couldn't think of an obvious fix other than preventing thread parallelism in the short term. The tests still run very quickly. https://github.com/nix-rust/nix/issues/251 Signed-off-by: Paul Osborne <osbpau@gmail.com>
2016-01-29ci: Re-enable Travis builds for i686Kamal Marhubi
refs https://github.com/carllerche/nix-rust/issues/252
2016-01-28ci: Disable i686 buildsKamal Marhubi
They appear to be having intermittent build failures. Two builds at the same commit with different failures: - https://travis-ci.org/kamalmarhubi/nix-rust/builds/105335248 - https://travis-ci.org/kamalmarhubi/nix-rust/builds/105336327 refs https://github.com/carllerche/nix-rust/issues/252
2016-01-18ci: Test on Rust stable, beta, 1.1.0+Kamal Marhubi
refs https://github.com/carllerche/nix-rust/issues/238
2015-09-24Bump .travis.yml to Rust 1.1.0Geoffrey Thomas
2015-07-09Fix Travis doc buildsCarl Lerche
2015-07-09Run 32 bit CI buildsCarl Lerche
2015-07-08Run tests with one thread on travisCarl Lerche
2015-07-06Add feature flag around execvpeTilde Engineering
2015-05-28Deploy docs to S3Carl Lerche
2015-05-28Run CI on linux & os xCarl Lerche
2015-04-24Run CI on beta and nightlyCarl Lerche
2015-02-20Automatically deploy docsCarl Lerche
2015-01-03Added travis testsValerii Hiora