Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
Remove TravisCI setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwjblue committed Mar 15, 2020
1 parent b06353c commit 337caa4
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 104 deletions.
72 changes: 0 additions & 72 deletions .travis.yml

This file was deleted.

20 changes: 0 additions & 20 deletions .travis/deploy.sh

This file was deleted.

Binary file removed .travis/deploy_key.pem.enc
Binary file not shown.
1 change: 0 additions & 1 deletion .travis/deploy_key.pem.pub

This file was deleted.

3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,13 @@ ember-cli
==============================================================================

[![Latest npm release][npm-badge]][npm-badge-url]
[![TravisCI Build Status][travis-badge]][travis-badge-url]
[![GitHub Actions CI][github-actions-badge]][github-actions-ci-url]
[![Test Coverage][coveralls-badge]][coveralls-badge-url]
[![Code Climate][codeclimate-badge]][codeclimate-badge-url]

[logo]: https://avatars0.githubusercontent.com/u/10262982?v=3&s=150
[npm-badge]: https://img.shields.io/npm/v/ember-cli.svg
[npm-badge-url]: https://www.npmjs.com/package/ember-cli
[travis-badge]: https://img.shields.io/travis/ember-cli/ember-cli/master.svg?label=TravisCI
[travis-badge-url]: https://travis-ci.org/ember-cli/ember-cli
[coveralls-badge]: https://img.shields.io/coveralls/ember-cli/ember-cli/master.svg
[coveralls-badge-url]: https://coveralls.io/github/ember-cli/ember-cli
[codeclimate-badge]: https://codeclimate.com/github/ember-cli/ember-cli/badges/gpa.svg
Expand Down
8 changes: 4 additions & 4 deletions docs/build-concurrency.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The default value for `process.env.JOBS` is (max concurrency) - 1 (via
`require('os').cpus().length - 1`), however there may be times when you need to
customize this value to avoid issues.

The most common case for this is in CI systems like TravisCI and CircleCI where
the total number of CPU's available on the system is very large (> 32) but the
individual CI jobs are limited to only 1.5 or 2 concurrent processes.

The most common case for this is in CI systems like GitHub Actions, TravisCI,
and CircleCI where the total number of CPU's available on the system is very
large (> 32) but the individual CI jobs are limited to only 1.5 or 2 concurrent
processes.
7 changes: 4 additions & 3 deletions docs/code-coverage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ Code coverage information is generated using [istanbuljs](https://github.com/ist
and then later uploaded to both
[Coveralls](https://coveralls.io/github/ember-cli/ember-cli) and
[Code Climate](https://codeclimate.com/github/ember-cli/ember-cli) via
[`.travis/codecoverage.sh`](../.travis/codecoverage.sh) after each Pull Request.
[`.github/workflows/coverage.yml`](../.github/workflows/coverage.yml) after each Pull Request.

`CODECLIMATE_REPO_TOKEN`, `COVERALLS_REPO_TOKEN` and `COVERALLS_SERVICE_NAME` are set via Travis CI
Settings and not exposed to the public as they are private tokens.
`CC_TEST_REPORTER_ID` is set via [GitHub encrypted
secrets](https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets)
and not exposed to the public as they are private tokens.
2 changes: 1 addition & 1 deletion tests/fixtures/smoke-tests/js-testem-config/testem.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
"browser_args": {
"Chrome": [
// --no-sandbox is needed when running Chrome inside a container
process.env.TRAVIS ? '--no-sandbox' : null,
process.env.CI ? '--no-sandbox' : null,

"--headless",
"--remote-debugging-port=0",
Expand Down

0 comments on commit 337caa4

Please sign in to comment.