From 5d9cfa5ab7a82360370db4c5368565a91b65ddb2 Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Tue, 15 Jun 2021 17:27:14 +0100 Subject: [PATCH] feat(dev-generic): add tio For interfacing with serial i/o. PR: zmkfirmware/zmk-docker#81 --- .github/workflows/containers.yml | 2 ++ Dockerfile | 1 + 2 files changed, 3 insertions(+) diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index f47a5fb..b02dcf6 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -424,6 +424,8 @@ jobs: - name: Test arm-zephyr-eabi-gdb if: ${{ matrix.architecture == 'arm' }} run: /opt/zephyr-sdk-${ZEPHYR_SDK_VERSION}/arm-zephyr-eabi/bin/arm-zephyr-eabi-gdb --version + - name: Test tio + run: tio --version - name: Test socat run: socat -V - name: Stop container diff --git a/Dockerfile b/Dockerfile index b378eb1..df357d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -65,6 +65,7 @@ RUN \ python3-wheel \ socat \ ssh \ + tio \ wget \ xz-utils \ && pip3 install \