Merge pull request #66 from Zondax/main #9
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: Build | |
on: [ push ] | |
jobs: | |
configure: | |
runs-on: ubuntu-latest | |
outputs: | |
uid_gid: ${{ steps.get-user.outputs.uid_gid }} | |
steps: | |
- id: get-user | |
run: echo "::set-output name=uid_gid::$(id -u):$(id -g)" | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install deps | |
run: | | |
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10 | |
make deps | |
brew install conan | |
- run: cmake -DCMAKE_BUILD_TYPE=Debug . && make | |
- run: GTEST_COLOR=1 ASAN_OPTIONS=detect_leaks=0 ctest -VV | |
build_ledger: | |
needs: configure | |
runs-on: ubuntu-latest | |
container: | |
image: zondax/builder-bolos:latest | |
options: --user ${{ needs.configure.outputs.uid_gid }} | |
env: | |
BOLOS_SDK: ${{ github.workspace }}/deps/nanos-secure-sdk | |
BOLOS_ENV: /opt/bolos | |
HOME: /home/zondax_circle | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Build Standard app | |
shell: bash -l {0} | |
run: | | |
source $HOME/.cargo/env | |
make | |
test_zemu: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Test | |
run: | | |
id | |
echo $HOME | |
echo $DISPLAY | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- run: sudo apt-get update -y && sudo apt-get install -y libusb-1.0.0 libudev-dev | |
- name: Install rust | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y cmake binutils-dev libcurl4-openssl-dev libiberty-dev libelf-dev libdw-dev | |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- --no-modify-path --default-toolchain none -y; | |
- name: Install node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '14.17.0' | |
- name: Install yarn | |
run: | | |
npm install -g yarn | |
- name: Build Ledger app | |
run: | | |
make SUBSTRATE_PARSER_FULL=1 | |
- name: Build/Install build js deps | |
run: | | |
export PATH=~/.cargo/bin:$PATH | |
make zemu_install | |
- name: Run zemu tests | |
run: | | |
export PATH=~/.cargo/bin:$PATH | |
make zemu_test | |
build_package_0: | |
needs: [ configure, build, build_ledger, test_zemu] | |
if: ${{ github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
container: | |
image: zondax/builder-bolos:latest | |
options: --user ${{ needs.configure.outputs.uid_gid }} | |
env: | |
BOLOS_SDK: ${{ github.workspace }}/deps/nanos-secure-sdk | |
BOLOS_ENV: /opt/bolos | |
HOME: /home/zondax_circle | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install deps | |
run: pip install ledgerblue | |
- name: Build NanoS | |
shell: bash -l {0} | |
run: | | |
source $HOME/.cargo/env | |
make | |
mv ./app/pkg/installer_s.sh ./app/pkg/installer_nanos.sh | |
- name: Set tag | |
id: nanos | |
run: echo ::set-output name=tag_name::$(./app/pkg/installer_nanos.sh version) | |
- name: Create or Update Release (1) | |
id: create_release_0 | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
files: ./app/pkg/installer_nanos.sh | |
tag_name: ${{ steps.nanos.outputs.tag_name }} | |
draft: false | |
prerelease: false | |
build_package_1: | |
needs: [ configure, build, build_ledger, test_zemu ] | |
if: ${{ github.ref == 'refs/heads/main' }} | |
runs-on: ubuntu-latest | |
container: | |
image: zondax/builder-bolos:latest | |
options: --user ${{ needs.configure.outputs.uid_gid }} | |
env: | |
BOLOS_SDK: ${{ github.workspace }}/deps/nanosplus-secure-sdk | |
BOLOS_ENV: /opt/bolos | |
HOME: /home/zondax_circle | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- name: Install deps | |
run: pip install ledgerblue | |
- name: Build NanoSP | |
shell: bash -l {0} | |
run: | | |
source $HOME/.cargo/env | |
make | |
mv ./app/pkg/installer_s2.sh ./app/pkg/installer_nanos_plus.sh | |
- name: Set tag | |
id: nanosp | |
run: echo ::set-output name=tag_name::$(./app/pkg/installer_nanos_plus.sh version) | |
- name: Update Release | |
id: update_release_2 | |
uses: softprops/action-gh-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token | |
with: | |
files: ./app/pkg/installer_nanos_plus.sh | |
tag_name: ${{ steps.nanosp.outputs.tag_name }} | |
draft: false | |
prerelease: false |