Skip to content

Commit

Permalink
chore(ci): cleanup Travis config (#3481)
Browse files Browse the repository at this point in the history
- Fix warnings reported by Travis (https://travis-ci.org/github/karma-runner/karma/builds/677410665/config).
- Remove installation of g++-4.8 as it is no longer needed.
- Remove SAUCE_USERNAME variable as it is configured in the Travis UI now.
- Remove fast_finish as it only makes sense when some jobs are allowed to fail (https://docs.travis-ci.com/user/build-matrix/#fast-finishing). Which is not the case.
  • Loading branch information
devoto13 committed Apr 21, 2020
1 parent fc9ea9a commit 518d001
Showing 1 changed file with 4 additions and 15 deletions.
19 changes: 4 additions & 15 deletions .travis.yml
@@ -1,32 +1,21 @@
sudo: false
os: linux
dist: xenial
language: node_js
node_js:
- 10
- 12

env:
global:
- SAUCE_USERNAME: karmarunnerbot
- CXX=g++-4.8
matrix:
fast_finish: true
jobs:
include:
- name: "Lint code and commit message format"
node_js: "10"
env: VALIDATE_COMMIT_MSG=true LINT=true

before_install:
- npm config set loglevel warn
- g++-4.8 --version

addons:
firefox:
"latest"
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
firefox: "latest"

services:
- xvfb
Expand Down

0 comments on commit 518d001

Please sign in to comment.