Skip to content

Commit

Permalink
chore(travis): fix cypress error - missing library
Browse files Browse the repository at this point in the history
Following error in build https://travis-ci.org/topheman/npm-registry-browser/builds/640826657

```
/home/travis/.cache/Cypress/3.1.0/Cypress/Cypress: error while loading shared libraries: libgconf-2.so.4: cannot open shared object file: No such file or directory
```

Solution found: cypress-io/cypress#4069
  • Loading branch information
topheman committed Jan 23, 2020
1 parent 5c905cc commit a01371d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ sudo: false
language: node_js
node_js:
- "8"
addons:
apt:
packages:
- libgconf-2-4
jobs:
include:
- stage: Testing / Deploy (staging/production)
Expand Down Expand Up @@ -68,4 +72,4 @@ jobs:
tags: true
branch: master
after_deploy:
- curl https://mock-npm-registry-browser.surge.sh
- curl https://mock-npm-registry-browser.surge.sh

0 comments on commit a01371d

Please sign in to comment.