Skip to content

Commit

Permalink
Merge branch 'release/v4.10.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
valeros committed Jul 2, 2020
2 parents 0537ffa + 1f527da commit dce2352
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 63 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Examples

on: [push, pull_request]

jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-16.04, windows-latest, macos-latest]
python-version: [2.7, 3.7]
example:
- "examples/arduino-blink"
- "examples/arduino-hid-usb-mouse"
- "examples/arduino-internal-libs"
- "examples/mbed-blink"
- "examples/mbed-dsp"
- "examples/mbed-serial"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U https://github.com/platformio/platformio/archive/develop.zip
platformio platform install file://.
- name: Build examples
run: |
platformio run -d ${{ matrix.example }}
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Teensy: development platform for [PlatformIO](http://platformio.org)
[![Build Status](https://travis-ci.org/platformio/platform-teensy.svg?branch=develop)](https://travis-ci.org/platformio/platform-teensy)
[![Build status](https://ci.appveyor.com/api/projects/status/vb91x3g5xujtorf9/branch/develop?svg=true)](https://ci.appveyor.com/project/ivankravets/platform-teensy/branch/develop)

[![Build Status](https://github.com/platformio/platform-teensy/workflows/Examples/badge.svg)](https://github.com/platformio/platform-teensy/actions)

Teensy is a complete USB-based microcontroller development system, in a very small footprint, capable of implementing many types of projects. All programming is done via the USB port. No special programmer is needed, only a standard USB cable and a PC or Macintosh with a USB port.

Expand Down
28 changes: 0 additions & 28 deletions appveyor.yml

This file was deleted.

7 changes: 3 additions & 4 deletions platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"name": "teensy",
"title": "Teensy",
"description": "Teensy is a complete USB-based microcontroller development system, in a very small footprint, capable of implementing many types of projects. All programming is done via the USB port. No special programmer is needed, only a standard USB cable and a PC or Macintosh with a USB port.",
"url": "https://www.pjrc.com/teensy",
"homepage": "http://platformio.org/platforms/teensy",
"homepage": "https://www.pjrc.com/teensy",
"license": "Apache-2.0",
"engines": {
"platformio": "<5"
Expand All @@ -12,7 +11,7 @@
"type": "git",
"url": "https://github.com/platformio/platform-teensy.git"
},
"version": "4.9.0",
"version": "4.10.0",
"packageRepositories": [
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
"http://dl.platformio.org/packages/manifest.json"
Expand Down Expand Up @@ -41,7 +40,7 @@
"framework-arduinoteensy": {
"type": "framework",
"optional": true,
"version": "~1.152.0"
"version": "~1.153.0"
},
"framework-mbed": {
"type": "framework",
Expand Down

0 comments on commit dce2352

Please sign in to comment.