Skip to content

Commit 171ac72

Browse files
committed
Add compatibility with PIO Core 6.0
1 parent 017d6ec commit 171ac72

File tree

3 files changed

+34
-5
lines changed

3 files changed

+34
-5
lines changed

.github/workflows/examples.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Examples
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
os: [ubuntu-latest, windows-latest, macos-latest]
11+
example:
12+
- "examples/arduino-blink"
13+
- "examples/arduino-internal-libs"
14+
runs-on: ${{ matrix.os }}
15+
steps:
16+
- uses: actions/checkout@v3
17+
with:
18+
submodules: "recursive"
19+
- name: Set up Python
20+
uses: actions/setup-python@v3
21+
with:
22+
python-version: "3.9"
23+
- name: Install dependencies
24+
run: |
25+
pip install -U https://github.com/platformio/platformio/archive/develop.zip
26+
pio pkg install --global --platform symlink://.
27+
- name: Build examples
28+
run: |
29+
pio run -d ${{ matrix.example }}

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Microchip PIC32: development platform for [PlatformIO](http://platformio.org)
2-
[![Build Status](https://travis-ci.org/platformio/platform-microchippic32.svg?branch=develop)](https://travis-ci.org/platformio/platform-microchippic32)
3-
[![Build status](https://ci.appveyor.com/api/projects/status/r1gu34suxrbgfjp9/branch/develop?svg=true)](https://ci.appveyor.com/project/ivankravets/platform-microchippic32/branch/develop)
1+
# Microchip PIC32: development platform for [PlatformIO](https://platformio.org)
2+
3+
[![Build Status](https://github.com/platformio/platform-microchippic32/workflows/Examples/badge.svg)](https://github.com/platformio/platform-microchippic32/actions)
44

55
Microchip's 32-bit portfolio with the MIPS microAptiv or M4K core offer high performance microcontrollers, and all the tools needed to develop your embedded projects. PIC32 MCUs gives your application the processing power, memory and peripherals your design needs!
66

@@ -9,7 +9,7 @@ Microchip's 32-bit portfolio with the MIPS microAptiv or M4K core offer high per
99

1010
# Usage
1111

12-
1. [Install PlatformIO](http://platformio.org)
12+
1. [Install PlatformIO](https://platformio.org)
1313
2. Create PlatformIO project and configure a platform option in [platformio.ini](https://docs.platformio.org/page/projectconf.html) file:
1414

1515
## Stable version

platform.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"MIPS32"
1212
],
1313
"engines": {
14-
"platformio": "^5"
14+
"platformio": "^6"
1515
},
1616
"repository": {
1717
"type": "git",

0 commit comments

Comments
 (0)