From 501fd0922877de077adc071220df22a131be3a37 Mon Sep 17 00:00:00 2001 From: Piotr Esden-Tempski Date: Mon, 14 Mar 2022 21:55:05 -0700 Subject: [PATCH] ghactions: Added libftdi1 dependency installation. --- .github/workflows/build-pr.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index f264ccb2..05eeaa3f 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -24,12 +24,15 @@ jobs: # Use embedded toolchain - uses: numworks/setup-arm-toolchain@2020-q4 - # Runs a single command using the runners shell + # Run some of the most common build types - name: Build native fw run: make - name: Clean run: make clean + - name: Install BMP PC hosted dependencies + run: sudo apt-get -y install libftdi1-dev + - name: Build PC hosted binary run: make PROBE_HOST=hosted