Skip to content

Commit

Permalink
Merge pull request #113 from LedgerHQ/jca/bump_sdk_and_tools
Browse files Browse the repository at this point in the history
Bump SDK versions and Ragger version
  • Loading branch information
yogh333 committed Mar 27, 2024
2 parents e1420b8 + 463bc17 commit 06e6c27
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 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.18.0] - 2024-03-27

### Changed
- Bump SDK versions with last patchs
- dev-tools: Bump ragger version to 1.16.0

## [3.17.0] - 2024-02-21

### Changed
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 ragger[tests,all_backends]==1.14.4
RUN pip3 install ragger[tests,all_backends]==1.16.0
8 changes: 4 additions & 4 deletions lite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,25 +68,25 @@ ARG GIT_SERVER=https://github.com/LedgerHQ
# Latest Nano S SDK
# Will switch to the unified SDK for next OS release.
ENV NANOS_SDK=/opt/nanos-secure-sdk
RUN git clone --branch v2.1.0-17 --depth 1 "$GIT_SERVER/nanos-secure-sdk.git" "$NANOS_SDK"
RUN git clone --branch v2.1.0-18 --depth 1 "$GIT_SERVER/nanos-secure-sdk.git" "$NANOS_SDK"

# Unified SDK
ENV LEDGER_SECURE_SDK=/opt/ledger-secure-sdk
RUN git clone "$GIT_SERVER/ledger-secure-sdk.git" "$LEDGER_SECURE_SDK"

# Latest Nano X SDK (OS nanox_2.2.3 => based on API_LEVEL 5)
ENV NANOX_SDK=/opt/nanox-secure-sdk
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOX_SDK" v5.10.0
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOX_SDK" v5.11.0
RUN echo nanox > $NANOX_SDK/.target

# Latest Nano S+ SDK (OS nanos+_1.1.1 => based on API_LEVEL 5)
ENV NANOSP_SDK=/opt/nanosplus-secure-sdk
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOSP_SDK" v5.10.0
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOSP_SDK" v5.11.0
RUN echo nanos2 > $NANOSP_SDK/.target

# Latest Stax SDK (OS stax_1.4.0-rc2 => based on API_LEVEL 15)
ENV STAX_SDK=/opt/stax-secure-sdk
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$STAX_SDK" v15.1.0
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$STAX_SDK" v15.2.0
RUN echo stax > $STAX_SDK/.target

# Default SDK
Expand Down

0 comments on commit 06e6c27

Please sign in to comment.