1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-26 22:32:33 +00:00

fix(ci): remove unnecessary code changes [no changelog]

This commit is contained in:
M1nd3r 2025-02-25 11:36:57 +01:00
parent c096eb54c6
commit 9813e63104

View File

@ -9,10 +9,10 @@ on:
- labeled - labeled
workflow_dispatch: workflow_dispatch:
schedule: schedule:
- cron: "15 23 * * *" # every day @ 23:15 - cron: '15 23 * * *' # every day @ 23:15
push: push:
branches: branches:
- "release/**" - 'release/**'
# cancel any previous runs on the same PR # cancel any previous runs on the same PR
concurrency: concurrency:
@ -409,6 +409,7 @@ jobs:
continue-on-error: true continue-on-error: true
- uses: ./.github/actions/upload-coverage - uses: ./.github/actions/upload-coverage
# Upgrade tests. # Upgrade tests.
# See [docs/tests/upgrade-tests](../tests/upgrade-tests.md) for more info. # See [docs/tests/upgrade-tests](../tests/upgrade-tests.md) for more info.
core_upgrade_test: core_upgrade_test:
@ -441,6 +442,7 @@ jobs:
- run: nix-shell --run "tests/download_emulators.sh" - run: nix-shell --run "tests/download_emulators.sh"
- run: nix-shell --run "poetry run pytest tests/upgrade_tests" - run: nix-shell --run "poetry run pytest tests/upgrade_tests"
# Persistence tests - UI. # Persistence tests - UI.
core_persistence_test: core_persistence_test:
name: Persistence tests (${{ matrix.model }}, ${{ matrix.asan }}${{ matrix.protocol=='v2' && ', THP' || ''}}) name: Persistence tests (${{ matrix.model }}, ${{ matrix.asan }}${{ matrix.protocol=='v2' && ', THP' || ''}})
@ -638,6 +640,7 @@ jobs:
if: always() if: always()
- uses: ./.github/actions/upload-coverage - uses: ./.github/actions/upload-coverage
# Tests for U2F and HID. # Tests for U2F and HID.
core_u2f_test: core_u2f_test:
name: U2F test (${{ matrix.model }}, ${{ matrix.asan }}${{ matrix.protocol=='v2' && ', THP' || ''}}) name: U2F test (${{ matrix.model }}, ${{ matrix.asan }}${{ matrix.protocol=='v2' && ', THP' || ''}})