Files
app-ethereum/.github/workflows/ci-workflow.yml
2021-06-18 12:32:37 +02:00

45 lines
866 B
YAML

name: Compilation & tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
job_build_debug:
name: Build debug
runs-on: ubuntu-latest
container:
image: ghcr.io/jibeee/ledger-app-builder/ledger-app-builder:2.0.0-1
steps:
- name: Clone
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build an altcoin
run: |
make DEBUG=1 CHAIN=ethereum_classic
- name: Upload altcoin binary
uses: actions/upload-artifact@v2
with:
name: ethereum-classic-app-debug
path: bin
- name: Build Ethereum
run: |
make clean
make DEBUG=1
- name: Upload app binary
uses: actions/upload-artifact@v2
with:
name: ethereum-app-debug
path: bin