-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Update master #2888
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Update master #2888
Changes from all commits
a93ceca
f8891ce
7336a69
bf7c3a8
d9148af
d0bc4fa
b7776bf
87b7493
2d47bdf
0442044
8500318
97c37ff
e585e83
ae86a36
8507b63
3f148ab
09a0ccd
182147e
dcb0321
9dbf23f
6690044
1c38642
174e07a
90a28ed
d0321ba
29222ff
f33bfc5
13f2c1a
3675bdb
216c196
17aca8f
841f080
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
python: {} | ||
erlang: {} | ||
php: {} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{% unless include.minimal == false %} | ||
For a minimal configuration, add the following to your `.travis.yml`: | ||
|
||
```yaml | ||
deploy: | ||
provider: ecr | ||
access_key_id: <encrypted access_key_id> | ||
secret_access_key: <encrypted secret_access_key> | ||
source: <source> | ||
target: <target> | ||
edge: true # opt in to dpl v2 | ||
``` | ||
{: data-file=".travis.yml"} | ||
|
||
|
||
|
||
{{ include.content }} | ||
{% endunless %} | ||
|
||
## Status | ||
|
||
Support for deployments to AWS ECR is in **alpha**. Please see [Maturity Levels](/user/deployment-v2#maturity-levels) for details. | ||
## Known options | ||
|
||
Use the following options to further configure the deployment. | ||
|
||
| `access_key_id` | AWS access key — **required**, **secret**, type: string | | ||
| `secret_access_key` | AWS secret access key — **required**, **secret**, type: string | | ||
| `account_id` | AWS Account ID — type: string, note: Required if the repository is owned by a different account than the IAM user | | ||
| `source` | Image to push — **required**, type: string, note: can be the id or the name and optional tag (e.g. mysql:5.6) | | ||
| `target` | Comma separated list of partial repository names to push to — **required**, type: string | | ||
| `region` | Comma separated list of regions to push to — type: string, default: `us-east-1` | | ||
|
||
### Shared options | ||
|
||
| `cleanup` | Clean up build artifacts from the Git working directory before the deployment — type: boolean | | ||
| `run` | Commands to execute after the deployment finished successfully — type: string or array of strings | | ||
|
||
## Environment variables | ||
|
||
All options can be given as environment variables if prefixed with `AWS_`. | ||
|
||
For example, `access_key_id` can be given as `AWS_ACCESS_KEY_ID=<access_key_id>`. | ||
|
||
{% include deploy/secrets.md name="access_key_id" env_name="AWS_ACCESS_KEY_ID" %} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
--- | ||
title: Billing FAQ | ||
layout: en | ||
permalink: /user/billing-faq/ | ||
|
||
--- | ||
|
||
> Please see our **[Billing overview](/user/billing-overview/)** first. | ||
|
||
## How can I get on an annual plan? | ||
|
||
The annual based plans are available by contacting the Travis CI support team. | ||
|
||
|
||
## How can I get on the usage based plan? | ||
|
||
The usage based plan is available by contacting theTravis CI support team. | ||
|
||
## How are the credits deducted? | ||
|
||
The credits will be deducted from the credits pool after each build job is executed depending on the operation system used. | ||
|
||
## How can I check how much I will pay for user licenses at the end of the month? | ||
|
||
The unique users triggering builds within a billing period will constitute a number of actual user licenses used and will be charged at the end of the billing period, according to the rates in a selected plan. | ||
|
||
By default Travis CI system provides the possibility to trigger a build to all members of your team on GitHub, Bitbucket, GitLab and Assembla who have writing rights on repositories. | ||
If the team member has not triggered the build during the billing period Travis CI will not charge you for that user. | ||
|
||
|
||
To check how much active users you got during the last billing cycle please contact the support. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please contact support. |
||
Travis CI is working on the user management functionality where you will be able: | ||
|
||
* To see how many users has rights to trigger the build | ||
* To see how many was active/trigger the build during the last month | ||
* Select the users who are able to trigger the build | ||
Comment on lines
+32
to
+36
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Travis CI is working on the user management functionality where you will be able to:
|
||
|
||
## What if I am building open source? | ||
|
||
Each of the Travis CI Plans contains an amount of special OSS credits per month assigned to run builds only on public repositories. To find out more about it please [contact the Travis CI support team](mailto:[email protected]). In the email please include: | ||
|
||
* Your account name and your VCS provider (like travis-ci.com/github/[your account name] ) | ||
* How many credits (build minutes) you’d like to request (should your run out of credits again you can repeat the process to request more or to discuss a renewable amount) | ||
|
||
|
||
## How do I use credits? | ||
|
||
You can use your credits to run builds on your public and private repositories. | ||
You may have been assigned an amount of OSS credits to run builds on public repositories. When you run out of OSS credits but want to keep building on public repositories you can go to the Plan page and turn the Credits consumption for OSS switcher to `On`. In this case, once the ‘OSS credits’ pool is depleted, the system starts deducting from the ‘paid credits’ pool. Builds for OSS repositories will be allowed to start, and deducted from the paid credits. | ||
|
||
## How do I recharge my credits balance? | ||
|
||
You can buy additional build credits anytime you need them by clicking on your profile icon in the right upper corner of the screen =>Settings, navigate to the Plan page and press the ‘Buy add-ons’ button. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. extra space between "and press" |
||
Please be advised that it is not possible to buy additional credits on Free Plan. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. additional credits on the Free Plan. |
||
|
||
|
||
## Do credits expire? | ||
|
||
No, the credits you purchased do not expire. | ||
|
||
## Can you send me an invoice? | ||
|
||
The invoice is sent automatically by the Travis CI system after the Plan purchase or subsequent user license charge is made. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The invoice is sent automatically by the Travis CI system after a Plan is purchased or a subsequent user license charge is made. |
||
|
||
|
||
## Can I get a refund? | ||
|
||
Upon cancellation of your account or switching back to the Free Plan, you can request a refund under the following conditions: | ||
|
||
* You haven’t used any paid credits | ||
* Request made up to and including 14 days after the billing date: applicable for full refund | ||
|
||
Contact our support team at [email protected] Specify the GitHub/Bitbucket/GitLab/Assembla handle of the account for which you’re requesting a refund, and send us a copy of your payment and/or invoice. | ||
|
||
|
||
## How do I cancel my paid plan? | ||
|
||
If you want to cancel your paid plan, click on your profile icon in the right upper corner of the screen =>Settings, navigate to the Plan page and press the ‘Change Plan’ button and choose the Free Plan. | ||
Travis CI Free plan will provide you with 10,000 build credits to try it out for public and private repositories builds and unlimited number of users with no charge. | ||
If you want your account to be deleted, please contact the Travis CI support. | ||
|
||
|
||
## Do these prices include tax? | ||
|
||
No, all prices do not include tax. | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, all our prices do not include tax. |
||
## Can I sign up for automatic renewals for usage based plan? | ||
|
||
The per-seats licence invoice will be charged and sent automatically after each month you use the Travis CI service, based on the maximum number of unique users who triggered the build during the given month. | ||
Unfortunately, right now it is not possible to configure automatic renewals for build credits. You need to manually buy credits each time you are about to run out of them. We intend to make it more convenient in the near future. | ||
To help you track the build credit consumption Travis CI system will send the notification emails each time your credit balance is used up by 50, 75 and 100%. | ||
|
||
## Are add-ons limited to a certain number of users? | ||
|
||
You can buy additional add-ons any time you feel it is needed. You and your organization’s members can use the bought add-ons with no limitations. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can buy additional add-ons any time you need them. You and your organization's members can use the acquired add-ons without limitations. |
||
|
||
## Why my credits balance is negative? | ||
|
||
Most probably your last build costed more than you had available in your credit balance. You won't be able to run any builds until your balance gets positive. Replenish your credits (the negative balance will be deducted upon arrival of new credits creating new balance - see our [billing overview](/user/billing-overview/#negative-credits). | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Credits are deducted from the credits pool after each build job is executed depending on the operating system used.