From f1126e00a497bdc65cf9d4dea478f3ec1be19744 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Tue, 8 Jun 2021 20:40:58 +0100 Subject: [PATCH 1/2] Try and fix Travis --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f383d60..86528dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ language: python python: - - "2.7" + - "3.9" # Short duration job, use the container/without sudo image as it boots faster sudo: false @@ -22,7 +22,7 @@ matrix: - env: BOARD=nanoatmega328 PLATFORMIO_CI_SRC=examples/RDMSerialRecv - env: BOARD=pro16MHzatmega328 PLATFORMIO_CI_SRC=examples/RDMSerialRecv - os: linux - dist: trusty + dist: bionic # Short duration job, use the container/without sudo image as it boots faster sudo: false env: TASK='codespell' From b677ee906e3f36294becd056ab08ad8fbb5a4298 Mon Sep 17 00:00:00 2001 From: Peter Newman Date: Tue, 8 Jun 2021 20:44:52 +0100 Subject: [PATCH 2/2] Correct names for Teensy 2 based boards --- .travis.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 86528dd..9c1ddd9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,5 @@ +os: linux +dist: bionic language: python python: - "3.9" @@ -14,8 +16,8 @@ cache: matrix: fast_finish: true include: - - env: BOARD=teensy20 PLATFORMIO_CI_SRC=examples/RDMSerialRecv - - env: BOARD=teensy20pp PLATFORMIO_CI_SRC=examples/RDMSerialRecv + - env: BOARD=teensy2 PLATFORMIO_CI_SRC=examples/RDMSerialRecv + - env: BOARD=teensy2pp PLATFORMIO_CI_SRC=examples/RDMSerialRecv - env: BOARD=uno PLATFORMIO_CI_SRC=examples/RDMSerialRecv - env: BOARD=diecimilaatmega328 PLATFORMIO_CI_SRC=examples/RDMSerialRecv - env: BOARD=leonardo PLATFORMIO_CI_SRC=examples/RDMSerialRecv