Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: make swap function tests update #45

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions .github/workflows/swap-ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,22 @@ jobs:
coin:
- name: tezos
repo: LedgerHQ/app-tezos
branch: develop
- name: xrp
repo: LedgerHQ/app-xrp
branch: develop
- name: ethereum
repo: LedgerHQ/app-ethereum
branch: develop
- name: litecoin
repo: LedgerHQ/app-bitcoin-new
repo: LedgerHQ/app-bitcoin
branch: master
- name: bitcoin_legacy
repo: LedgerHQ/app-bitcoin
branch: master
- name: bitcoin
repo: LedgerHQ/app-bitcoin-new
branch: develop

name: Build App
runs-on: ubuntu-latest
Expand All @@ -44,7 +52,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: ${{ matrix.coin.repo }}
ref: develop
ref: ${{ matrix.coin.branch }}

- name: Build in ${{ matrix.coin.repo }} coin ${{ matrix.coin.name }} for SDK ${{ matrix.sdk.name }}
run: |
Expand Down Expand Up @@ -103,7 +111,7 @@ jobs:
uses: actions/checkout@v3
with:
repository: "LedgerHQ/app-exchange"
ref: "b3bf722138c19453bc9bef59e1b421cf0f5e8328"
ref: "develop"
submodules: true

- name: Build Exchange
Expand Down Expand Up @@ -133,7 +141,7 @@ jobs:
uses: actions/checkout@v2
with:
repository: "LedgerHQ/app-exchange"
ref: "b3bf722138c19453bc9bef59e1b421cf0f5e8328"
ref: "develop"

- name: Install APT dependencies
run: sudo apt-get update -y && sudo apt-get install -y libusb-1.0.0 libudev-dev
Expand Down