-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from rabbitholecomputing/master
ADBuino compiling and working again
- Loading branch information
Showing
45 changed files
with
909 additions
and
258 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,40 @@ | ||
name: Build ADBuino firmware | ||
|
||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build_adbuino: | ||
name: Build firmware on Ubuntu 22.04 | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Check out code from GitHub | ||
uses: actions/checkout@v3 | ||
with: | ||
path: adbuino | ||
fetch-depth: "0" | ||
- name: Install packages | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y python3-pip | ||
- name: Install platformio | ||
run: | | ||
sudo pip install platformio | ||
- name: Build firmware | ||
run: | | ||
cd adbuino/src/firmware | ||
pio run -v | ||
- name: Rename firmware files | ||
run: | | ||
cd adbuino/src/firmware | ||
utils/rename_adbuino_binaries.sh | ||
- name: Upload binaries into build artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
path: adbuino/src/firmware/distrib/* | ||
name: ADBuino binaries |
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
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 |
---|---|---|
|
@@ -29,3 +29,4 @@ fp-info-cache | |
.pio | ||
images/.DS_Store | ||
.DS_Store | ||
build/ |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
This project has a long history with a collection of updates from several | ||
people. This is being distributed under the GPL v2 (or later) license. | ||
https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt | ||
people. This is being distributed under the GPL v3 (or later) license. | ||
https://www.gnu.org/licenses/gpl-3.0.txt | ||
|
||
The following copyright notice should be included with distributions of | ||
this source code: | ||
Copyright 2021-2022 Tony Kuker | ||
Copyright 2022 Rabbit Hole Computing LLC | ||
Copyright 2021-2023 Tony Kuker | ||
Copyright 2022-2023 Rabbit Hole Computing LLC | ||
Copyright 2020 Difegue | ||
Copyright 2015 Rob Braun | ||
Copyright 2011 Jun WAKO <[email protected]> | ||
|
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
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
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
Oops, something went wrong.