-
Notifications
You must be signed in to change notification settings - Fork 3
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 #28 from tropicsquare/develop
Update master
- Loading branch information
Showing
50 changed files
with
3,051 additions
and
468 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Build docs and release (master) | ||
name: Build docs and release to GitHub Pages from master | ||
on: | ||
push: | ||
branches: | ||
|
@@ -27,21 +27,22 @@ jobs: | |
BUILD_DOCS=ON | ||
USE_TREZOR_CRYPTO=ON | ||
- name: Archive HTML docs | ||
uses: thedoctor0/[email protected] | ||
- name: Upload built html as artifact | ||
id: html_artifact | ||
uses: actions/upload-pages-artifact@v3 | ||
with: | ||
type: 'zip' | ||
filename: 'libtropic-html-docs.zip' | ||
directory: 'build/docs/doxygen/html/' | ||
path: build/docs/doxygen/html | ||
|
||
- name: Upload HTML docs release | ||
uses: ncipollo/[email protected] | ||
with: | ||
allowUpdates: true | ||
artifactErrorsFailBuild: true | ||
artifacts: 'build/docs/doxygen/html/libtropic-html-docs.zip' | ||
makeLatest: true | ||
name: 'HTML Documentation' | ||
prerelease: false | ||
replacesArtifacts: true | ||
tag: 'latest' | ||
deploy: | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.html_artifact.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
needs: build | ||
permissions: | ||
pages: write # to deploy to Pages | ||
id-token: write # to verify the deployment originates from an appropriate source | ||
steps: | ||
- name: Deploy to GitHub Pages | ||
id: pages_deployment | ||
uses: actions/deploy-pages@v4 |
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 |
---|---|---|
|
@@ -13,6 +13,9 @@ jobs: | |
- name: Checkout Repository | ||
uses: actions/[email protected] | ||
|
||
- name: Set Ceedling config path | ||
run: echo "CEEDLING_MAIN_PROJECT_FILE=scripts/ceedling.yml" >>$GITHUB_ENV | ||
|
||
- name: Run Ceedling Unit Tests | ||
uses: pavelpolach321/[email protected] | ||
with: | ||
|
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,3 +1,6 @@ | ||
[submodule "stm32_example/drivers/STM32CubeF4"] | ||
path = stm32_example/drivers/STM32CubeF4 | ||
url = https://github.com/STMicroelectronics/STM32CubeF4 | ||
[submodule "tests/platforms/libtropic-stm32"] | ||
path = tests/platforms/libtropic-stm32 | ||
url = https://github.com/tropicsquare/libtropic-stm32 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
### TROPIC01 firmware update files | ||
|
||
TODO explain here the purpose of this folder | ||
|
||
``` | ||
./convert.py boot_v1.0.1/fw_v0.1.2_signed.bin > boot_v1.0.1/fw_CPU_0_1_2. | ||
``` |
Oops, something went wrong.