This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
Makefile: Use APP_CUSTOM_BUILD_DEPENDENCIES instead of DEP_DIR #215
Workflow file for this run
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: 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 |