Skip to content

Commit

Permalink
Merge branch 'release/v1.0.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
valeros committed Jun 17, 2020
2 parents b459468 + 541564a commit d33b56b
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 54 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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/shakti-sdk_gpio-keypad"
- "examples/shakti-sdk_i2c-lm75"
- "examples/shakti-sdk_uart-hello"
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 }}
25 changes: 0 additions & 25 deletions .travis.yml

This file was deleted.

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

Shakti is an open-source initiative by the RISE group at IIT-Madras, which is not only building open source, production grade processors, but also associated components like interconnect fabrics, verification tools, storage controllers, peripheral IPs and SOC tools.
[![Build Status](https://github.com/platformio/platform-shakti/workflows/Examples/badge.svg)](https://github.com/platformio/platform-shakti/actions)

Shakti is an open-source initiative by the RISE group at IIT-Madras, which is not only building open source, production grade processors, but also associated components like interconnect fabrics, verification tools, storage controllers, peripheral IPs and SOC tools.

* [Home](http://platformio.org/platforms/shakti) (home page in PlatformIO Platform Registry)
* [Documentation](http://docs.platformio.org/page/platforms/shakti.html) (advanced usage, packages, boards, frameworks, etc.)
Expand Down
24 changes: 0 additions & 24 deletions appveyor.yml

This file was deleted.

7 changes: 5 additions & 2 deletions platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,18 @@
"type": "git",
"url": "https://github.com/platformio/platform-shakti.git"
},
"version": "1.0.1",
"version": "1.0.2",
"packageRepositories": [
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
"http://dl.platformio.org/packages/manifest.json"
],
"frameworks": {
"shakti-sdk": {
"package": "framework-shakti-sdk",
"script": "builder/frameworks/shakti-sdk.py"
"script": "builder/frameworks/shakti-sdk.py",
"description": "A software development kit for developing applications on Shakti class of processors",
"url": "https://gitlab.com/shaktiproject/software/shakti-sdk",
"title": "Shakti SDK"
}
},
"packages": {
Expand Down

0 comments on commit d33b56b

Please sign in to comment.