Skip to content

Commit

Permalink
Merge pull request #116 from LedgerHQ/update/flex_sdk_and_ragger
Browse files Browse the repository at this point in the history
Update/flex sdk and ragger
  • Loading branch information
lpascal-ledger authored Apr 12, 2024
2 parents 065c57a + e89aebe commit e5fb16d
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.20.0] - 2024-04-12

### Changed
- Bump Flex SDK version
- dev-tools: Bump ragger version to 1.18.0 (enabling Flex testing) and Speculos to 0.8.6

## [3.19.0] - 2024-04-03

### Added
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ They can be pulled via these commands:

```bash
# pull the default, full image, built from `full/Dockerfile`
$ sudo docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest
$ docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder:latest
# pull the lite image, built from `lite/Dockerfile`
$ sudo docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest
$ docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-lite:latest
# pull the dev-tools image, built from `dev-tools/Dockerfile`
$ sudo docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-dev-tools:latest
$ docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-dev-tools:latest
# pull the legacy image, built from `legacy/Dockerfile`
$ sudo docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest
$ docker pull ghcr.io/ledgerhq/ledger-app-builder/ledger-app-builder-legacy:latest
```

## Compile your app in the container
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ ARG PYTHON_BUILD_DEPS=libffi-dev,python3-dev,py3-virtualenv
RUN apk add $(echo -n "$PYTHON_BUILD_DEPS" | tr , ' ')

# Install test tools (Ragger framework, Speculos emulator, Ledgerblue...)
RUN pip3 install --no-cache-dir "ragger[tests,all_backends]~=1.16"
RUN pip3 install --no-cache-dir "ragger[tests,all_backends]==1.18.0" "speculos==0.8.6"
2 changes: 1 addition & 1 deletion lite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ RUN echo stax > $STAX_SDK/.target

# Latest Flex SDK (OS europa_0.1.0-re3 => based on API_LEVEL 18)
ENV FLEX_SDK=/opt/flex-secure-sdk
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$FLEX_SDK" v18.1.0
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$FLEX_SDK" v18.2.0
RUN echo flex > $FLEX_SDK/.target

# Default SDK
Expand Down

0 comments on commit e5fb16d

Please sign in to comment.