ghactions: Added libftdi1 dependency installation.

This commit is contained in:
Piotr Esden-Tempski 2022-03-14 21:55:05 -07:00
parent 0d97871893
commit 501fd09228

View File

@ -24,12 +24,15 @@ jobs:
# Use embedded toolchain # Use embedded toolchain
- uses: numworks/setup-arm-toolchain@2020-q4 - 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 - name: Build native fw
run: make run: make
- name: Clean - name: Clean
run: make clean run: make clean
- name: Install BMP PC hosted dependencies
run: sudo apt-get -y install libftdi1-dev
- name: Build PC hosted binary - name: Build PC hosted binary
run: make PROBE_HOST=hosted run: make PROBE_HOST=hosted