Hiro Asari
Hiro Asari
To turn off manipulating `$PATH` See https://github.com/travis-ci/travis-ci/issues/8813, https://github.com/travis-ci/travis-ci/issues/5092.
Another attempt at adding Hack support. For previous efforts, see #1318, #1672. The default build logic is based on https://docs.hhvm.com/hack/getting-started/starting-a-real-project#configuring-travisci: ```sh #!/bin/sh set -ex apt update -y DEBIAN_FRONTEND=noninteractive apt install...
So that the user-defined environment variables can make use of default ones, such as `TRAVIS_RUBY_VERSION`. Resolves https://github.com/travis-ci/travis-ci/issues/8858
This PR adds a step to run `mix hex.organization auth acme` commands with the auth keys given in `hex_org_keys`. `hex_org_keys` is either a scalar or an array of auth keys....
Improve ssh_known_hosts to accept hashes of the form: host: foo.example.com type: ssh-rsa key: AAAAC3NzaC1lZDI1NTE5AAAAIOd6AtszfjD3nI7WvvnN+B39XsrjPzAMCByYO1hwUGf9 and add this to `$HOME/.ssh/known_hosts` **instead of** running `ssh-keyscan` on the given host. Resolves https://github.com/travis-ci/docs-travis-ci-com/issues/1649.
This PR replaces https://github.com/travis-ci/travis-build/pull/1380.
This replaces the ill-maintained CLI addon invocation, and provides a flexible way to test the app locally more reliably. After this PR, we will replace `script/compile` with this `compile`.
Follow precedence outlined in https://github.com/rust-lang-nursery/rustup.rs#override-precedence to set the Rust version. Resolves https://github.com/travis-ci/travis-ci/issues/10002
To suppress compiler warnings. This PR introduces a new environment variable type, `Defaults`, that are not strictly Travis built-ins, but are common environment variables that users may define and subsequently...
By use of env var `TRAVIS_BASH_CACHER_PCT`. If `rand` yields less than this, we use the bash version.