Skip to content

Commit 98ab876

Browse files
authored
Enable ble (#35)
* enable ble * update ragger * update zemu
1 parent 50397ed commit 98ab876

File tree

160 files changed

+2127
-1816
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

160 files changed

+2127
-1816
lines changed

.github/workflows/build_and_functional_tests.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,26 @@ jobs:
3131
zemu_tests:
3232
name: Run zemu tests
3333
needs: build_application
34-
runs-on: ubuntu-22.04
34+
runs-on: ${{ github.repository_owner == 'zondax' && 'zondax-runners' || 'ubuntu-latest' }}
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v5
3737
- uses: actions/download-artifact@v4
3838
with:
3939
name: compiled_app_binaries
4040
path: build
41+
- name: Install dependencies
42+
run: |
43+
sudo apt-get update
44+
sudo apt-get install -y curl protobuf-compiler build-essential git python3 python3-pip \
45+
libusb-1.0-0 libudev-dev
46+
sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 10
47+
sudo update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 10
48+
- name: Setup Node.js
49+
uses: actions/[email protected]
50+
with:
51+
node-version: 22
52+
- name: Install yarn
53+
run: npm install -g yarn
4154
- name: Install dependencies
4255
run: cd tests_zemu && yarn install
4356
- name: Run zemu tests

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ tests/emulator_tests.log
2323
emulator.log
2424
emulator.pid
2525
tests/__pycache__/
26+
27+
# IDE settings
28+
.vscode/

.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ GIT_DESCRIBE=$(shell git describe --tags --abbrev=8 --always --long --dirty 2>/d
3131
VERSION_TAG=$(shell echo $(GIT_DESCRIBE) | sed 's/^v//g')
3232
APPVERSION_M=1
3333
APPVERSION_N=4
34-
APPVERSION_P=5
34+
APPVERSION_P=6
3535
APPVERSION=$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)
3636
APPNAME = "Mina"
3737

@@ -181,6 +181,9 @@ export RELEASE_DEPS
181181

182182
HAVE_APPLICATION_FLAG_BOLOS_SETTINGS = 1
183183

184+
ENABLE_BLUETOOTH = 1
185+
ENABLE_NBGL_QRCODE = 1
186+
184187
include $(BOLOS_SDK)/Makefile.standard_app
185188

186189
side_release: all
-52 Bytes
2.48 KB
-3.11 KB
4.57 KB
-52 Bytes
2.58 KB

0 commit comments

Comments
 (0)