Ledger merged develop #174
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
name: CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
- develop | |
- ledger-merged-develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
job_build: | |
name: Compilation for NanoS, X, S+, and Stax | |
strategy: | |
matrix: | |
include: | |
- model: nanos | |
SDK: "$NANOS_SDK" | |
- model: nanox | |
SDK: "$NANOX_SDK" | |
- model: nanosp | |
SDK: "$NANOSP_SDK" | |
- model: stax | |
SDK: "$STAX_SDK" | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
make DEBUG=0 COIN=syscoin BOLOS_SDK=${{ matrix.SDK }} && mv bin/ syscoin-bin/ | |
make clean | |
make DEBUG=0 COIN=syscoin_test BOLOS_SDK=${{ matrix.SDK }} && mv bin/ syscoin-testnet-bin/ | |
- name: Upload Syscoin app binary | |
uses: actions/upload-artifact@v2 | |
with: | |
name: syscoin-app-${{ matrix.model }} | |
path: syscoin-bin | |
- name: Upload Syscoin Testnet app binary | |
uses: actions/upload-artifact@v2 | |
with: | |
name: syscoin-testnet-app-${{ matrix.model }} | |
path: syscoin-testnet-bin | |
job_unit_test: | |
name: Unit test | |
needs: job_build | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v2 | |
- name: Build unit tests | |
run: | | |
cd unit-tests/ | |
cmake -Bbuild -H. && make -C build && make -C build test | |
- name: Generate code coverage | |
run: | | |
cd unit-tests/ | |
lcov --directory . -b "$(realpath build/)" --capture --initial -o coverage.base && \ | |
lcov --rc lcov_branch_coverage=1 --directory . -b "$(realpath build/)" --capture -o coverage.capture && \ | |
lcov --directory . -b "$(realpath build/)" --add-tracefile coverage.base --add-tracefile coverage.capture -o coverage.info && \ | |
lcov --directory . -b "$(realpath build/)" --remove coverage.info '*/unit-tests/*' -o coverage.info && \ | |
genhtml coverage.info -o coverage | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: code-coverage | |
path: unit-tests/coverage | |
- name: Upload to codecov.io | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./unit-tests/coverage.info | |
flags: unittests | |
name: codecov-app-syscoin | |
fail_ci_if_error: true | |
verbose: true | |
- name: HTML documentation | |
run: doxygen .doxygen/Doxyfile | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: documentation | |
path: doc/html | |
job_test: | |
if: false | |
name: Tests | |
strategy: | |
matrix: | |
include: | |
- model: nanos | |
- model: nanox | |
- model: nanosp | |
- model: stax | |
needs: job_build | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/osiastedian/ledger-app-syscoin/speculos-syscoin:latest | |
ports: | |
- 1234:1234 | |
- 9999:9999 | |
- 40000:40000 | |
- 41000:41000 | |
- 42000:42000 | |
- 43000:43000 | |
options: --entrypoint /bin/bash | |
steps: | |
- name: Clone | |
uses: actions/checkout@v2 | |
- name: Download Syscoin Testnet app binary | |
uses: actions/download-artifact@v2 | |
with: | |
name: syscoin-testnet-app-${{matrix.model}} | |
path: bin | |
- name: Run tests | |
run: | | |
cd tests | |
pip install -r requirements.txt | |
PYTHONPATH=$PYTHONPATH:/speculos pytest --headless --model=${{ matrix.model }} --timeout=500 | |
job_test_mainnet: | |
if: false | |
name: Tests on mainnet | |
strategy: | |
matrix: | |
include: | |
- model: nanos | |
- model: nanox | |
- model: nanosp | |
- model: stax | |
needs: job_build | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/osiastedian/ledger-app-syscoin/speculos-syscoin:latest | |
ports: | |
- 1234:1234 | |
- 9999:9999 | |
- 40000:40000 | |
- 41000:41000 | |
- 42000:42000 | |
- 43000:43000 | |
options: --entrypoint /bin/bash | |
steps: | |
- name: Clone | |
uses: actions/checkout@v2 | |
- name: Download Syscoin app binary | |
uses: actions/download-artifact@v2 | |
with: | |
name: syscoin-app-${{matrix.model}} | |
path: bin | |
- name: Run tests | |
run: | | |
cd tests_mainnet | |
pip install -r requirements.txt | |
PYTHONPATH=$PYTHONPATH:/speculos pytest --headless --model=${{ matrix.model }} --timeout=300 | |
# Legacy not applicable to Syscoin because no prior app | |
# job_test_python_lib_legacyapp: | |
# name: Tests with the Python library and legacy Syscoin app | |
# needs: job_build | |
# runs-on: ubuntu-latest | |
# container: | |
# image: ghcr.io/osiastedian/ledger-app-syscoin/speculos-syscoin:latest | |
# ports: | |
# - 1234:1234 | |
# - 9999:9999 | |
# - 40000:40000 | |
# - 41000:41000 | |
# - 42000:42000 | |
# - 43000:43000 | |
# options: --entrypoint /bin/bash | |
# steps: | |
# - name: Clone | |
# uses: actions/checkout@v2 | |
# - name: Run tests | |
# run: | | |
# cd bitcoin_client/tests | |
# pip install -r requirements.txt | |
# PYTHONPATH=$PYTHONPATH:/speculos pytest --headless | |
job_test_js_lib: | |
if: false | |
name: Tests with the JS library | |
needs: job_build | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/osiastedian/ledger-app-syscoin/speculos-syscoin:latest | |
ports: | |
- 1234:1234 | |
- 9999:9999 | |
- 40000:40000 | |
- 41000:41000 | |
- 42000:42000 | |
- 43000:43000 | |
options: --entrypoint /bin/bash | |
steps: | |
- name: Clone | |
uses: actions/checkout@v2 | |
- name: Install node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: "16" | |
- name: Install yarn | |
run: | | |
npm install -g yarn | |
- name: Download Syscoin Testnet app binary | |
uses: actions/download-artifact@v2 | |
with: | |
name: syscoin-testnet-app-nanos | |
path: bin | |
- name: Run tests | |
run: | | |
cd bitcoin_client_js | |
yarn install | |
LOG_SPECULOS=1 LOG_APDUS=1 SPECULOS="/speculos/speculos.py" yarn test | |
job_test_rust_client: | |
name: Tests for rust client library | |
needs: job_build | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest | |
steps: | |
- name: Clone | |
uses: actions/checkout@v2 | |
- name: Run tests | |
run: | | |
cd bitcoin_client_rs/ | |
cargo test --no-default-features --features="async" |