summaryrefslogtreecommitdiff
path: root/.travis.yml
AgeCommit message (Collapse)Author
2019-10-20disable gh-pages deploy in travis configWez Furlong
It's not currently working and I don't think anyone uses the GH pages version of the docs.
2019-09-15remove macos config from travisWez Furlong
It was slow and unreliable; the GitHub Actions macos support is much faster.
2019-07-29adopt rust 1.36 as the min rust versionWez Furlong
Closes https://github.com/alexcrichton/ssh2-rs/issues/119
2019-07-29Add script for running integration testsWez Furlong
This makes it possible to run the integration tests without requiring that the user change their local ssh configuration. This is desirable because some sites have strict controls over the local ssh configuration files. This commit adds a script that spawns a local copy of the ssh daemon running on an alternate port with a specific configuration that is known to successfully pass the test suite. This has only been tested on my local macos machine so far.
2019-07-29libssh2-sys: add `vendored-openssl` feature to build openssl-srcWez Furlong
This enables building `ssh2` and `libssh2-sys` with the `vendored-openssl` feature, which in turn causes openssl to be built and linked locally, and does not require that homebrew or some other externally provided version of openssl be made available. It does require a working C compiler, perl and make.
2019-01-02Update travis configAlex Crichton
2018-09-13Remove `cmake` dependency in favor of `cc` (#94)Alex Crichton
* Remove `cmake` dependency in favor of `cc` This has been done in a few other projects and has made it lightyears easier to compile native C code, so let's do it here! More info at alexcrichton/curl-rust#225
2017-12-02More travis tweaksAlex Crichton
2017-12-02Tweak travis configAlex Crichton
2016-11-19Update travis tokenAlex Crichton
2016-10-06Revert "Try to not bother with a newer cmake"Alex Crichton
This reverts commit f349caa4d13cf3ca1136668d8d77861dee05668c.
2016-10-06Try to not bother with a newer cmakeAlex Crichton
2016-10-04Try fixing OSX againAlex Crichton
2016-10-04No need to install openssl on osxAlex Crichton
2016-10-04Only use stable rust on osxAlex Crichton
2016-10-04Build on OSX as wellAlex Crichton
2016-10-04Build on OSX as wellAlex Crichton
2015-11-03Just build on stable instead of 1.0.0Alex Crichton
2015-10-07Add automated testing of FFI bindingsAlex Crichton
2015-08-16Don't document dependencies on travisAlex Crichton
2015-07-31Install deps for coverageAlex Crichton
2015-07-31Install cmake from a new locationAlex Crichton
2015-07-31Start using travis-cargoAlex Crichton
2015-05-15Test on many rust versionsAlex Crichton
2015-01-11Tweak travis configAlex Crichton
2014-10-29Don't email on successful travis buildsAlex Crichton
2014-10-05Update travis configAlex Crichton
2014-09-22Upload docs to Rust CI as wellAlex Crichton
2014-09-18Upload docs to gh-pagesAlex Crichton
2014-09-17Get testing on travisAlex Crichton
2014-09-17Initial commitAlex Crichton
Bind a Session type (no I/O yet)