Skip to content

Commit

Permalink
fix(ci): deploys
Browse files Browse the repository at this point in the history
Deployment fails because pip is not correctly installed for mkdocs
  • Loading branch information
kevinchappell committed Nov 6, 2018
1 parent 094573c commit 63aa874
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
sudo: required
dist: trusty
stages:
- lint
- test
- deploy
language: node_js
node_js: '10'
node_js: "10"
python: "3.4"
cache:
directories:
- "~/.npm"
Expand All @@ -25,9 +27,10 @@ jobs:
- git config credential.helper "store --file=.git/credentials"
- git config --global user.email "bot@formbuilder.online"
- git config --global user.name "🤖"
- sudo apt-get -y install python3-pip python-dev
- sudo apt-get updates
- sudo apt-get -y install python3-pip
- sudo pip3 install -U setuptools
- sudo pip install mkdocs
- sudo pip3 install mkdocs
- python3 -V
- pip3 -V
- mkdocs -V
Expand Down

0 comments on commit 63aa874

Please sign in to comment.