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
-dist: xenial
2
-sudo: require
1
+dist: bionic
2
+sudo: false
3
 
3
 
4
 language: python
4
 language: python
5
 python:
5
 python:
8
 notifications:
8
 notifications:
9
   email: false
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
 env:
11
 env:
19
   - TEST_PLATFORM="megaatmega2560"
12
   - TEST_PLATFORM="megaatmega2560"
20
   - TEST_PLATFORM="DUE"
13
   - TEST_PLATFORM="DUE"
26
   - TEST_PLATFORM="esp32"
19
   - TEST_PLATFORM="esp32"
27
   - TEST_PLATFORM="alfawise_U20"
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
 before_install:
22
 before_install:
37
-  - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90
38
   #
23
   #
39
   # Fetch the tag information for the current branch
24
   # Fetch the tag information for the current branch
40
   - git fetch origin --tags
25
   - git fetch origin --tags

Loading…
Cancel
Save