Skip to content

Commit

Permalink
Merge pull request #120 from LedgerHQ/fix/apa/lcov
Browse files Browse the repository at this point in the history
Fix lcov
  • Loading branch information
lpascal-ledger authored May 15, 2024
2 parents 0bd985f + c5b9ca2 commit 79bf6a1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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.22.1] - 2024-05-15

### Fixed
- Unit tests regression (lcov)

## [3.22.0] - 2024-05-13

### Changed
Expand Down
8 changes: 5 additions & 3 deletions lite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,12 @@ RUN python3 -m ensurepip --upgrade \
&& pip3 install --upgrade pip \
&& pip3 install wheel

# lcov is only present in the testing repository of the edge branch
RUN apk add --repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community lcov
# lcov is only present in the community repository of the edge branch but its perl-json-xs
# dependency won't work on 3.15 so install it (from the 3.15 repo) first
RUN apk add perl-json-xs && \
apk add --repository=http://dl-cdn.alpinelinux.org/alpine/edge/community lcov

# This package is required by lcov
# This package is required by lcov (but somehow not listed as such in the Alpine package)
RUN apk add gzip

# So that it still supports things incorrectly pointing to python
Expand Down

0 comments on commit 79bf6a1

Please sign in to comment.