-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3a0dfc3
Showing
286 changed files
with
27,369 additions
and
0 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,16 @@ | ||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
end_of_line = lf | ||
insert_final_newline = true | ||
|
||
[*.{c,h,cpp,hpp}] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.{yml,sh}] | ||
indent_style = space | ||
indent_size = 2 |
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,11 @@ | ||
# https://www.jetbrains.com/help/clion/configuring-debugger-options.html#gdbinit-lldbinit | ||
# | ||
# You need to create `$HOME/.gdbinit` with the following content: | ||
# set auto-load local-gdbinit on | ||
# add-auto-load-safe-path / | ||
|
||
# set architecture arm | ||
# handle SIGILL nostop pass noprint | ||
# add-symbol-file app/bin/app.elf 0x40000000 | ||
# set backtrace limit 20 | ||
# b *0x40000000 |
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,31 @@ | ||
name: CI | ||
|
||
on: | ||
# Triggers the workflow on push or pull request events but only for the main branch | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
scan-build: | ||
name: Clang Static Analyzer | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Build with Clang Static Analyzer | ||
run: | | ||
scan-build --use-cc=clang -analyze-headers -enable-checker security -enable-checker unix -enable-checker valist -o scan-build --status-bugs make default | ||
- uses: actions/upload-artifact@v2 | ||
if: failure() | ||
with: | ||
name: scan-build | ||
path: scan-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 |
---|---|---|
@@ -0,0 +1,122 @@ | ||
name: Build | ||
on: [ push ] | ||
|
||
jobs: | ||
configure: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
uid_gid: ${{ steps.get-user.outputs.uid_gid }} | ||
steps: | ||
- id: get-user | ||
run: echo "::set-output name=uid_gid::$(id -u):$(id -g)" | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Install deps | ||
run: | | ||
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10 | ||
make deps | ||
brew install conan | ||
sudo apt install libbsd-dev | ||
- run: cmake -DCMAKE_BUILD_TYPE=Debug . && make | ||
- run: GTEST_COLOR=1 ASAN_OPTIONS=detect_leaks=0 ctest -VV | ||
|
||
build_ledger: | ||
needs: configure | ||
runs-on: ubuntu-latest | ||
container: | ||
image: zondax/builder-bolos:latest | ||
options: --user ${{ needs.configure.outputs.uid_gid }} | ||
env: | ||
BOLOS_SDK: ${{ github.workspace }}/deps/nanos-secure-sdk | ||
BOLOS_ENV: /opt/bolos | ||
HOME: /home/zondax_circle | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Build Standard app | ||
shell: bash -l {0} | ||
run: | | ||
source $HOME/.cargo/env | ||
make | ||
test_zemu: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Test | ||
run: | | ||
id | ||
echo $HOME | ||
echo $DISPLAY | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- run: sudo apt-get update -y && sudo apt-get install -y libusb-1.0.0 libudev-dev | ||
- name: Install rust | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y cmake binutils-dev libcurl4-openssl-dev libiberty-dev libelf-dev libdw-dev | ||
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --no-modify-path --default-toolchain none -y; | ||
- name: Install node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14.17.0' | ||
- name: Install yarn | ||
run: | | ||
npm install -g yarn | ||
- name: Build Ledger app | ||
run: | | ||
make | ||
- name: Build/Install build js deps | ||
run: | | ||
export PATH=~/.cargo/bin:$PATH | ||
make zemu_install | ||
- name: Run zemu tests | ||
run: | | ||
export PATH=~/.cargo/bin:$PATH | ||
make zemu_test | ||
build_package: | ||
needs: [ configure, build, build_ledger, test_zemu ] | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
runs-on: ubuntu-latest | ||
container: | ||
image: zondax/builder-bolos:latest | ||
options: --user ${{ needs.configure.outputs.uid_gid }} | ||
env: | ||
BOLOS_SDK: ${{ github.workspace }}/deps/nanos-secure-sdk | ||
BOLOS_ENV: /opt/bolos | ||
HOME: /home/zondax_circle | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Install deps | ||
run: pip install ledgerblue | ||
- name: Build | ||
shell: bash -l {0} | ||
run: | | ||
source $HOME/.cargo/env | ||
make SUBSTRATE_PARSER_FULL=0 | ||
- name: Set tag name var (1) | ||
id: vars_1 | ||
run: echo ::set-output name=tag_name::$(./app/pkg/installer_s.sh version) | ||
- name: Create or Update Release (1) | ||
id: create_release_1 | ||
uses: softprops/action-gh-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | ||
with: | ||
files: ./app/pkg/installer_s.sh | ||
tag_name: ${{ steps.vars_1.outputs.tag_name }} | ||
draft: false | ||
prerelease: false |
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,53 @@ | ||
name: "Publish js packages" | ||
|
||
on: | ||
release: | ||
types: | ||
- created | ||
tags: | ||
- "npm_v[0-9]+(\\.[0-9]+)*" | ||
|
||
jobs: | ||
publish_npm_package: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
- name: Install node | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14.17.0' | ||
registry-url: "https://registry.npmjs.org" | ||
scope: "@zondax" | ||
- name: Install yarn | ||
run: npm install -g yarn | ||
- name: Build package | ||
run: | | ||
cd js | ||
yarn install | ||
yarn build | ||
- name: Get latest release version number | ||
id: get_version | ||
uses: battila7/get-version-action@v2 | ||
- name: Show version | ||
run: echo ${{ steps.get_version.outputs.version }} | ||
- name: Clean latest release version number | ||
id: get_version_cleaned | ||
uses: bhowell2/github-substring-action@v1 | ||
with: | ||
output_name: version | ||
value: ${{ steps.get_version.outputs.version }} | ||
index_of_str: "npm_" | ||
- name: Update tag | ||
run: | | ||
cd js | ||
echo Publishing as ${{ steps.get_version_cleaned.outputs.version }} | ||
npm --allow-same-version --no-git-tag-version version ${{ steps.get_version_cleaned.outputs.version }} | ||
- name: Publish package | ||
run: | | ||
cd js | ||
npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_PUBLISH_AUTO }} |
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,97 @@ | ||
# Created by .ignore support plugin (hsz.mobi) | ||
### C template | ||
# Prerequisites | ||
*.d | ||
|
||
# Object files | ||
*.o | ||
*.ko | ||
*.obj | ||
*.elf | ||
|
||
# Linker output | ||
*.ilk | ||
*.map | ||
*.exp | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Libraries | ||
*.lib | ||
*.a | ||
*.la | ||
*.lo | ||
|
||
# Shared objects (inc. Windows DLLs) | ||
*.dll | ||
*.so | ||
*.so.* | ||
*.dylib | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
*.i*86 | ||
*.x86_64 | ||
*.hex | ||
|
||
# Debug files | ||
*.dSYM/ | ||
*.su | ||
*.idb | ||
*.pdb | ||
|
||
# Kernel Module Compile Results | ||
*.mod* | ||
*.cmd | ||
.tmp_versions/ | ||
modules.order | ||
Module.symvers | ||
Mkfile.old | ||
dkms.conf | ||
|
||
\cmake-build-debug | ||
\.idea/ | ||
/tmp/ | ||
/deps/nano2-sdk/ | ||
|
||
# Created by cmake | ||
googletest-download/ | ||
googletest-src/ | ||
googletest-build/ | ||
CMakeFiles/ | ||
CMakeCache.txt | ||
unittests | ||
*.cmake | ||
Testing/ | ||
cmake-build-fuzz/ | ||
|
||
# Others | ||
/cmake-build-debug/ | ||
/cmake-build-fuzz/ | ||
\.idea | ||
/app/bin/ | ||
/app/debug/ | ||
/app/obj/ | ||
|
||
\deps/* | ||
!\deps/nanos-secure-sdk | ||
!\deps/nanox-secure-sdk | ||
!\deps/ledger-zxlib | ||
!\deps/tinycbor | ||
!\deps/BLAKE | ||
|
||
app/src/glyphs.c | ||
|
||
app/src/glyphs.h | ||
/build | ||
.vscode/dryrun.log | ||
.vscode/targets.log | ||
|
||
fuzz-*.log | ||
/fuzz/corpora | ||
|
||
.vscode/ |
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,6 @@ | ||
[submodule "deps/nanos-secure-sdk"] | ||
path = deps/nanos-secure-sdk | ||
url = https://github.com/LedgerHQ/nanos-secure-sdk.git | ||
[submodule "deps/nanox-secure-sdk"] | ||
path = deps/nanox-secure-sdk | ||
url = https://github.com/LedgerHQ/nanox-secure-sdk.git |
Oops, something went wrong.