Skip to content
This repository has been archived by the owner on Jun 4, 2024. It is now read-only.

Merge pull request #52 from LedgerHQ/develop #212

Merge pull request #52 from LedgerHQ/develop

Merge pull request #52 from LedgerHQ/develop #212

Workflow file for this run

name: Compilation & tests
on: [push, pull_request]
jobs:
job_build_debug:
name: Build debug
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 Tezos wallet
run: |
make DEBUG=1
- name: Upload app binary
uses: actions/upload-artifact@v2
with:
name: tezos-wallet-app-debug
path: bin
- name: Clone
uses: actions/checkout@v2
- name: Build Tezos baking
run: |
make clean
make DEBUG=1 APP=tezos_baking
- name: Upload app binary
uses: actions/upload-artifact@v2
with:
name: tezos-baking-app-debug
path: bin