Skip to content

Commit

Permalink
Merge pull request #544 from frazar/ci-update-to-python3-and-bionic
Browse files Browse the repository at this point in the history
Update CI to Python 3 and Ubuntu 18.04 LTS
  • Loading branch information
terrillmoore committed Feb 19, 2020
2 parents 87c9f2b + 7dfe512 commit 4eb195e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
##############################################################################

language: c
dist: trusty
dist: bionic
sudo: true

env:
Expand All @@ -35,10 +35,12 @@ before_install:
#
# PlatformIO setup
- uname --all
- sudo apt-get update -qq && sudo apt-get -y install python-pip
- python2 --version
- pip2 --version
- pip2 install --user --upgrade platformio
- sudo apt-get update -qq && sudo apt-get -y install python3-pip
- python3 --version
- pip3 install --user --upgrade pip
- pip3 --version
- pip3 install --user --upgrade setuptools
- pip3 install --user --upgrade platformio
- platformio update
- platformio --version
#
Expand Down

0 comments on commit 4eb195e

Please sign in to comment.