Browse Source

Update Travis to Ubuntu "Bionic" (#14664)

Chris Pepper 5 years ago
parent
commit
9e19f004d0
1 changed files with 2 additions and 17 deletions
  1. 2
    17
      .travis.yml

+ 2
- 17
.travis.yml View File

@@ -1,5 +1,5 @@
1
-dist: xenial
2
-sudo: require
1
+dist: bionic
2
+sudo: false
3 3
 
4 4
 language: python
5 5
 python:
@@ -8,13 +8,6 @@ python:
8 8
 notifications:
9 9
   email: false
10 10
 
11
-# Cache PlatformIO packages using Travis CI container-based infrastructure
12
-sudo: false
13
-cache:
14
-  pip: true
15
-  directories:
16
-  - "~/.platformio"
17
-
18 11
 env:
19 12
   - TEST_PLATFORM="megaatmega2560"
20 13
   - TEST_PLATFORM="DUE"
@@ -26,15 +19,7 @@ env:
26 19
   - TEST_PLATFORM="esp32"
27 20
   - TEST_PLATFORM="alfawise_U20"
28 21
 
29
-addons:
30
-  apt:
31
-    sources:
32
-      - ubuntu-toolchain-r-test
33
-    packages:
34
-      - g++-7
35
-
36 22
 before_install:
37
-  - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90
38 23
   #
39 24
   # Fetch the tag information for the current branch
40 25
   - git fetch origin --tags

Loading…
Cancel
Save