Skip to content

Commit becf315

Browse files
committed
Merge branch 'gh-pages' of github.com:travis-ci/docs-travis-ci-com into gh-pages
2 parents b116838 + ba72aaa commit becf315

File tree

6 files changed

+17
-16
lines changed

6 files changed

+17
-16
lines changed

user/deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ This example deploys to GitHub Releases when a tag is set and the Ruby version i
9898

9999
deploy:
100100
provider: releases
101-
api-key: "GITHUB OAUTH TOKEN"
101+
api_key: "GITHUB OAUTH TOKEN"
102102
file: "FILE TO UPLOAD"
103103
skip_cleanup: true
104104
on:

user/deployment/cloudfiles.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Rackspace Cloud Files Deployment
33
layout: en
4-
permalink: /user/deployment/cloudfiles/
4+
permalink: /user/deployment/cloudfiles/
55
---
66

77
Travis CI can automatically upload your build to [Rackspace Cloud Files](https://www.rackspace.com/cloud/files/) after a successful build.
@@ -11,7 +11,7 @@ For a minimal configuration, all you need to do is add the following to your `.t
1111
deploy:
1212
provider: cloudfiles
1313
username: "RACKSPACE USERNAME"
14-
api-key: "RACKSPACE API KEY"
14+
api_key: "RACKSPACE API KEY"
1515
region: "CLOUDFILE REGION"
1616
container: "CLOUDFILES CONTAINER NAME"
1717

@@ -20,7 +20,7 @@ This example is almost certainly not ideal, as you probably want to upload your
2020
deploy:
2121
provider: cloudfiles
2222
username: "RACKSPACE USERNAME"
23-
api-key: "RACKSPACE API KEY"
23+
api_key: "RACKSPACE API KEY"
2424
region: "CLOUDFILE REGION"
2525
container: "CLOUDFILES CONTAINER NAME"
2626
skip_cleanup: true
@@ -47,7 +47,7 @@ You can tell Travis CI only to deploy on tags, like this:
4747
deploy:
4848
provider: cloudfiles
4949
username: "RACKSPACE USERNAME"
50-
api-key: "RACKSPACE API KEY"
50+
api_key: "RACKSPACE API KEY"
5151
region: "CLOUDFILE REGION"
5252
container: "CLOUDFILES CONTAINER NAME"
5353
skip_cleanup: true
@@ -62,7 +62,7 @@ Often, you don't want to upload your entire project to Cloud Files. You can tell
6262
deploy:
6363
provider: cloudfiles
6464
username: "RACKSPACE USERNAME"
65-
api-key: "RACKSPACE API KEY"
65+
api_key: "RACKSPACE API KEY"
6666
region: "CLOUDFILE REGION"
6767
container: "CLOUDFILES CONTAINER NAME"
6868
skip_cleanup: true
@@ -74,13 +74,13 @@ If you want to upload to multiple containers, you can do this:
7474
deploy:
7575
- provider: cloudfiles
7676
username: "RACKSPACE USERNAME"
77-
api-key: "RACKSPACE API KEY"
77+
api_key: "RACKSPACE API KEY"
7878
region: "CLOUDFILE REGION"
7979
container: "CLOUDFILES CONTAINER NAME"
8080
skip_cleanup: true
8181
- provider: cloudfiles
8282
username: "RACKSPACE USERNAME"
83-
api-key: "RACKSPACE API KEY"
83+
api_key: "RACKSPACE API KEY"
8484
region: "CLOUDFILE REGION"
8585
container: "CLOUDFILES CONTAINER NAME"
8686
skip_cleanup: true
@@ -92,7 +92,7 @@ You can explicitly specify the branch to release from with the **on** option:
9292
deploy:
9393
provider: cloudfiles
9494
username: "RACKSPACE USERNAME"
95-
api-key: "RACKSPACE API KEY"
95+
api_key: "RACKSPACE API KEY"
9696
region: "CLOUDFILE REGION"
9797
container: "CLOUDFILES CONTAINER NAME"
9898
skip_cleanup: true
@@ -104,7 +104,7 @@ Alternatively, you can also configure Travis CI to release from all branches:
104104
deploy:
105105
provider: cloudfiles
106106
username: "RACKSPACE USERNAME"
107-
api-key: "RACKSPACE API KEY"
107+
api_key: "RACKSPACE API KEY"
108108
region: "CLOUDFILE REGION"
109109
container: "CLOUDFILES CONTAINER NAME"
110110
skip_cleanup: true

user/deployment/releases.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ You can upload multiple files using yml array notation. This example uploads two
6262

6363
deploy:
6464
provider: releases
65-
api-key: "GITHUB OAUTH TOKEN"
65+
api_key: "GITHUB OAUTH TOKEN"
6666
file:
6767
- "FILE 1"
6868
- "FILE 2"

user/languages/php.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,9 +187,9 @@ Please note that these extensions are not enabled by default with the exception
187187

188188
For PHP versions up to 5.6, these extensions are available.
189189

190-
* [apc.so](http://php.net/apc)
190+
* [apc.so](http://php.net/apc) (not available for 5.5 or 5.6)
191191
* [memcache.so](http://php.net/memcache) or [memcached.so](http://php.net/memcached)
192-
* [mongo.so](http://php.net/mongo) or [mongodb.so](https://php.net/mongodb)
192+
* [mongo.so](http://php.net/mongo)
193193
* [amqp.so](http://php.net/amqp)
194194
* [zmq.so](http://zeromq.org/bindings:php)
195195
* [xdebug.so](http://xdebug.org)

user/multi-os.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ matrix:
109109

110110
### Python example (unsupported languages)
111111

112-
For example, this `.travis.yml` uses the `matrix.include` key to include four specific entries in the build matrix. It also takes advantage of `language: generic` to test Python in OS X. Custom requirements are installed in `./.travis./install.sh` below.
112+
For example, this `.travis.yml` uses the `matrix.include` key to include four specific entries in the build matrix. It also takes advantage of `language: generic` to test Python in OS X. Custom requirements are installed in `./.travis/install.sh` below.
113113

114114
```yaml
115115
@@ -158,4 +158,4 @@ else
158158
fi
159159
```
160160

161-
Travis CI then tests the four expanded builds using `make test` automatically.
161+
Travis CI then tests the four expanded builds using `make test` automatically.

user/notifications.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,8 @@ You can interpolate the following variables:
187187
* *commit_subject*: first line of the commit message
188188
* *result*: result of build
189189
* *message*: travis message to the build
190-
* *duration*: duration of the build
190+
* *duration*: total duration of all builds in the matrix
191+
* *elapsed_time*: time between build start and finish
191192
* *compare_url*: commit change view URL
192193
* *build_url*: URL of the build detail
193194

0 commit comments

Comments
 (0)