Skip to content

ci: hardware tests for github actions #1

ci: hardware tests for github actions

ci: hardware tests for github actions #1

Workflow file for this run

name: Core hardware
on:
schedule:
- cron: '15 23 * * *' # every day @ 23:15
workflow_dispatch:
pull_request: # TODO remove
jobs:
# core_hardware_test:
# name: Selfhosted runner test
# runs-on: runner5
# env:
# TREZOR_MODEL: T
# PYOPT: 0
# # BOOTLOADER_DEVEL: 1
# DISABLE_OPTIGA: 1
# PYTEST_TIMEOUT: 300
# TREZOR_PYTEST_SKIP_ALTCOINS: 1
# TT_UHUB_LOCATION: "1-3"
# TT_UHUB_PORT: "1"
# # NIX_PATH: "nixpkgs=channel:nixos-23.11"
# steps:
# - uses: actions/checkout@v4
# with:
# submodules: recursive
# - uses: ./.github/actions/environment
# - run: nix-shell --arg hardwareTest true --run uhubctl
# - run: nix-shell --run "poetry run make -C core build_firmware"
# - run: nix-shell --arg hardwareTest true --run "poetry run python ci/hardware_tests/bootstrap.py tt core/build/firmware/firmware.bin"
# - run: nix-shell --run "poetry run trezorctl list"
# - run: nix-shell --run "poetry run trezorctl get-features"
# - run: |
# nix-shell --arg hardwareTest true --run "ls -l /dev/tty*"
# # TODO explain
# nix-shell --arg hardwareTest true --run "sleep 8h | tio --no-autoconnect /dev/ttyTREZOR &> trezor.log" &
# nix-shell --run "poetry run pytest -v tests/device_tests -k 'not authenticate and not recovery'"
# - run: cat trezor.log
# if: always()
core_hardware_test:
name: Device tests
runs-on: [self-hosted, '${{ matrix.runner }}']
strategy:
fail-fast: false
matrix:
coins: [universal, btconly]
include:
- model: T2B1
runner: hw-t2b1
- model: T2T1
runner: runner5 # FIXME use hw-t2t1 after it's removed from runner0
# - model: T1B1
# runner: hw-t1b1
env:
TREZOR_MODEL: ${{ matrix.model == 'T2T1' && 'T' || 'R' }}
TREZOR_PYTEST_SKIP_ALTCOINS: ${{ matrix.coins == 'btconly' && '1' || '0' }}
PYTEST_TIMEOUT: 1200
PYOPT: 0
DISABLE_OPTIGA: 1
BOOTLOADER_DEVEL: ${{ matrix.model == 'T2B1' && '1' || '0' }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: ./.github/actions/environment
- run: nix-shell --arg hardwareTest true --run uhubctl
- run: nix-shell --run "poetry run make -C core build_firmware"
- run: nix-shell --arg hardwareTest true --run "poetry run python ci/hardware_tests/bootstrap.py tt core/build/firmware/firmware.bin"
- run: nix-shell --run "poetry run trezorctl list"
- run: nix-shell --run "poetry run trezorctl get-features"
- run: |
nix-shell --arg hardwareTest true --run "ls -l /dev/tty*"
echo $TT_UHUB_PORT/$TT_UHUB_LOCATION
# log serial console to file; sleep is used because tio needs stdin that is not /dev/null
nix-shell --arg hardwareTest true --run "sleep 8h | tio --no-autoconnect /dev/ttyTREZOR &> trezor.log" &
nix-shell --run "poetry run pytest -v tests/device_tests -k 'not authenticate and not recovery'"
- run: tail -n50 tests/trezor.log || true
if: failure()
- uses: actions/upload-artifact@v3
with:
name: core-hardware-${{ matrix.model }}
path: trezor.log
retention-days: 7
if: always()