35 lines
719 B
YAML
35 lines
719 B
YAML
name: Compilation
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- develop
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
nano_release_build:
|
|
name: Build release application for NanoS, X and S+
|
|
strategy:
|
|
matrix:
|
|
sdk: ["$NANOS_SDK", "$NANOX_SDK", "$NANOSP_SDK"]
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest
|
|
|
|
steps:
|
|
- name: Clone
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Build Ethereum
|
|
run: |
|
|
make -j BOLOS_SDK=${{ matrix.sdk }}
|
|
|
|
- name: Build an altcoin
|
|
run: |
|
|
make clean
|
|
make -j BOLOS_SDK=${{ matrix.sdk }} CHAIN=polygon
|