Skip to content

Commit

Permalink
Merge pull request #412 from LedgerHQ/xch/remove-test-inter-dependency
Browse files Browse the repository at this point in the history
CI: Remove test inter dependency
  • Loading branch information
xchapron-ledger authored Jul 31, 2023
2 parents 1c0b8f1 + 919251a commit 0fed1b8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
coverage:
name: Code coverage
runs-on: ubuntu-latest
needs: [linter, misspell]
container:
image: docker://ghcr.io/ledgerhq/speculos-builder:latest
steps:
Expand All @@ -74,7 +73,6 @@ jobs:
build:
name: Clone, build, test
runs-on: ubuntu-latest
needs: [linter, misspell]
permissions:
packages: write

Expand Down Expand Up @@ -104,7 +102,7 @@ jobs:
package_python:
name: Build and deploy Speculos Python Package
runs-on: ubuntu-latest
needs: [build, coverage]
needs: [build]
container:
image: docker://ghcr.io/ledgerhq/speculos-builder:latest

Expand Down Expand Up @@ -189,7 +187,7 @@ jobs:
if: |
github.event_name == 'push' &&
(github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))
needs: [build, coverage, package_and_test_docker]
needs: [build]
steps:
- name: Clone
uses: actions/checkout@v3
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ 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).

## [0.2.8] - 2023-07-31

### Changed
- OCR: Change Stax OCR method. Don't use Tesseract anymore.
- CI: Remove CI job dependency to allow deployment if wanted

### Added
- API_LEVEL: Add support for API_LEVEL_12 for corresponding device

## [0.2.7] - 2023-06-30

### Fixed
Expand Down

0 comments on commit 0fed1b8

Please sign in to comment.