This repository has been archived by the owner on May 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update the platformio.ini Defaulting the platform to the latest public release, fixing versions for dependencies * Create Actions Workflow This creates a default workflow that builds both the AVR and ESP8266 code using the default configuration options.
- Loading branch information
Showing
2 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install Python Wheel | ||
run: pip install wheel | ||
- name: Install PlatformIO Core | ||
run: pip install -U https://github.com/platformio/platformio/archive/v4.2.1.zip | ||
- name: Compile BaseStation (AVR) | ||
run: python -m platformio run | ||
working-directory: DCCpp_Uno | ||
- name: Compile BaseStation (ESP8266) | ||
run: python -m platformio run | ||
working-directory: DCCpp_ESP |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters