-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved repository from SV-Zanshin to Zanduino
- Loading branch information
Arnd
authored and
Arnd
committed
Dec 9, 2020
1 parent
3233d96
commit cbb7cf1
Showing
9 changed files
with
158 additions
and
86 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
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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
#################################################################################################### | ||
## YAML file for the github Action that performs "clang-format" to check the c++ source files for ## | ||
## adherence to the defined standards. If no ".clang-format" file is defined at the root of the ## | ||
## project then the standard file is copied there. The default clang-format style is "Google", ## | ||
## with a couple of minor tweaks. ## | ||
## ## | ||
## ## | ||
## Version Date Developer Comments ## | ||
## ======= ========== ============== ============================================================ ## | ||
## 1.0.0 2020-12-09 SV-Zanshin Cloned from common project ## | ||
### ## | ||
#################################################################################################### | ||
name: 'Format' | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
jobs: | ||
source-checks: | ||
name: 'clang-format' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Install "Python"' | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: '3.x' | ||
- name: 'Checkout the repository' | ||
uses: actions/checkout@v2 | ||
- name: 'Checkout the "Zanduino/Common" repository' | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: Zanduino/Common | ||
path: Common | ||
- name: 'Install "clang-format"' | ||
run: bash ${GITHUB_WORKSPACE}/Common/Scripts/install_clang_actions.sh | ||
- name: 'Check formatting of all c++ files' | ||
run: python3 ${GITHUB_WORKSPACE}/Common/Python/run-clang-format.py -e "ci/*" -e "bin/*" -r . |
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,34 @@ | ||
#################################################################################################### | ||
## YAML file for github Actions that will attempt to compile the c++ artefacts using the Arduino ## | ||
## CLI for various platforms. ## | ||
## ## | ||
## Version Date Developer Comments ## | ||
## ======= ========== ============== ============================================================ ## | ||
## 1.0.0 2020-12-09 SV-Zanshin Cloned from common project ## | ||
## ## | ||
#################################################################################################### | ||
name: 'Build' | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
jobs: | ||
compile-on-platforms: | ||
name: 'Compile using Arduino IDE on selected platforms' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Install "python 3.x" package' | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: '3.x' | ||
- name: 'Checkout the repository from github' | ||
uses: actions/checkout@v2 | ||
- name: 'Checkout the "Zanduino/Common" repository from github' | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: Zanduino/Common | ||
path: Common | ||
- name: 'Install Arduino CLI package' | ||
run: bash ${GITHUB_WORKSPACE}/Common/Scripts/install_arduino_cli.sh | ||
- name: 'Run master compile python program' | ||
run: python3 ${GITHUB_WORKSPACE}/Common/Python/build_platform.py zanshin_platforms |
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,43 @@ | ||
#################################################################################################### | ||
## YAML file for github Actions that will perform project checking for adhering to doxygen ## | ||
## documentation standards and to also deploy the generated HTML documentation to gh-pages ## | ||
## ## | ||
## ## | ||
## Version Date Developer Comments ## | ||
## ======= ========== ============== ============================================================ ## | ||
## 1.0.0 2020-12-09 SV-Zanshin Cloned from common project ## | ||
### ## | ||
#################################################################################################### | ||
name: 'Doxygen' | ||
|
||
#################################################################################################### | ||
## Action runs when committing (push), doing a pull request, or a workflow_dispatch ## | ||
#################################################################################################### | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
jobs: | ||
doxygen: | ||
name: 'Generate doxygen' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Checkout the repository from github' | ||
uses: actions/checkout@v2 | ||
- name: 'Checkout the "Zanduino/Common" repository from github' | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: Zanduino/Common | ||
path: Common | ||
- name: 'Create doxygen html documentation' | ||
env: | ||
GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }} | ||
########################################################################################## | ||
## The following 5 lines need to be set here each project ## | ||
########################################################################################## | ||
PRETTYNAME: "Microchip SRAM Arduino Library" | ||
PROJECT_NAME: "MicrochipSRAM" | ||
PROJECT_NUMBER: "v1.0.7" | ||
PROJECT_BRIEF: "Arduino Library for an SNVRAM SPI chips from Microchip" | ||
PROJECT_LOGO: "" | ||
run: bash ${GITHUB_WORKSPACE}/Common/Scripts/doxy_gen_and_deploy.sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
name=MicrochipSRAM | ||
version=1.0.6 | ||
version=1.0.7 | ||
author=https://github.com/SV-Zanshin | ||
maintainer=https://github.com/SV-Zanshin | ||
sentence=Access all Microchip SRAM chips | ||
paragraph=Autodetect the Microchip SRAM chip in use and read/write data to and from it | ||
category=Data Storage | ||
url=https://github.com/SV-Zanshin/MicrochipSRAM | ||
url=https://github.com/Zanduino/MicrochipSRAM | ||
architectures=* |
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