Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
arobsn committed Nov 4, 2024
1 parent c1ddb07 commit 8959230
Showing 1 changed file with 95 additions and 128 deletions.
223 changes: 95 additions & 128 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,138 +3,105 @@ name: Compilation & tests
on: [push, pull_request]

jobs:
job_build_application_with_reusable_workflow:
job_build_application:
name: Build application using the reusable workflow
uses: LedgerHQ/ledger-app-workflows/.github/workflows/reusable_build.yml@v1
with:
upload_app_binaries_artifact: "compiled_app_binaries"

# job_build_nano_debug:
# name: Build application for NanoS+, X, Stax, Flex
# runs-on: ubuntu-latest
# strategy:
# matrix:
# include:
# - SDK: "$NANOX_SDK"
# artifact: ergo-app-debug-nanox
# - SDK: "$NANOSP_SDK"
# artifact: ergo-app-debug-nanosp
# - SDK: "$STAX_SDK"
# artifact: ergo-app-debug-stax
# - SDK: "$FLEX_SDK"
# artifact: ergo-app-debug-flex

# container:
# image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest

# steps:
# - name: Clone
# uses: actions/checkout@v4

# - name: Build
# run: |
# git config --global --add safe.directory "$GITHUB_WORKSPACE"
# make BOLOS_SDK=${{ matrix.SDK }} DEBUG=1

# - name: Upload app binary
# uses: actions/upload-artifact@v4
# with:
# name: ${{ matrix.artifact }}
# path: bin

# job_unit_test:
# name: Unit tests
# runs-on: ubuntu-latest

# container:
# image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest

# steps:
# - name: Clone
# uses: actions/checkout@v4

# - name: Build unit tests
# run: |
# cd unit-tests/
# cmake -Bbuild -H. && make -C build

# - name: Run unit tests
# run: |
# cd unit-tests/
# 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@v4
# with:
# name: code-coverage
# path: unit-tests/coverage

# - name: Upload to codecov.io
# if: false
# uses: codecov/codecov-action@v4
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# files: ./unit-tests/coverage.info
# flags: unittests
# name: codecov-app-ergo
# fail_ci_if_error: true
# verbose: true

# job_generate_doc:
# name: Generate project documentation
# runs-on: ubuntu-latest

# container:
# image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest

# steps:
# - name: Clone
# uses: actions/checkout@v4

# - name: HTML documentation
# run: doxygen .doxygen/Doxyfile

# - uses: actions/upload-artifact@v4
# with:
# name: documentation
# path: doc/html

# job_scan_build:
# name: Clang Static Analyzer
# runs-on: ubuntu-latest
# strategy:
# matrix:
# include:
# - SDK: "$NANOSP_SDK"
# - SDK: "$STAX_SDK"

# container:
# image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest

# steps:
# - name: Clone
# uses: actions/checkout@v4

# - name: Build with Clang Static Analyzer
# run: |
# export BOLOS_SDK=${{ matrix.SDK }}
# make clean
# scan-build --use-cc=clang -analyze-headers -enable-checker security -enable-checker unix -enable-checker valist -o scan-build --status-bugs make default

# - name: Upload scan result
# uses: actions/upload-artifact@v4
# if: failure()
# with:
# name: scan-build
# path: scan-build
job_unit_test:
name: Unit tests
runs-on: ubuntu-latest

container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest

steps:
- name: Clone
uses: actions/checkout@v4

- name: Build unit tests
run: |
cd unit-tests/
cmake -Bbuild -H. && make -C build
- name: Run unit tests
run: |
cd unit-tests/
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@v4
with:
name: code-coverage
path: unit-tests/coverage

- name: Upload to codecov.io
if: false
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./unit-tests/coverage.info
flags: unittests
name: codecov-app-ergo
fail_ci_if_error: true
verbose: true

job_generate_doc:
name: Generate project documentation
runs-on: ubuntu-latest

container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest

steps:
- name: Clone
uses: actions/checkout@v4

- name: HTML documentation
run: doxygen .doxygen/Doxyfile

- uses: actions/upload-artifact@v4
with:
name: documentation
path: doc/html

job_scan_build:
name: Clang Static Analyzer
runs-on: ubuntu-latest
strategy:
matrix:
include:
- SDK: "$NANOSP_SDK"
- SDK: "$STAX_SDK"

container:
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest

steps:
- name: Clone
uses: actions/checkout@v4

- name: Build with Clang Static Analyzer
run: |
export BOLOS_SDK=${{ matrix.SDK }}
make clean
scan-build --use-cc=clang -analyze-headers -enable-checker security -enable-checker unix -enable-checker valist -o scan-build --status-bugs make default
- name: Upload scan result
uses: actions/upload-artifact@v4
if: failure()
with:
name: scan-build
path: scan-build

job_test:
name: Functional Tests
Expand All @@ -149,7 +116,7 @@ jobs:
id: nanosp
dir: nanos2

needs: job_build_application_with_reusable_workflow
needs: job_build_application
runs-on: ubuntu-latest

container:
Expand Down

0 comments on commit 8959230

Please sign in to comment.