mirror of
https://github.com/meshtastic/firmware.git
synced 2025-09-19 08:17:26 +00:00
15 lines
463 B
YAML
15 lines
463 B
YAML
name: Setup native build
|
|
description: Install libraries needed for building the Native/Portduino build
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- name: Setup base
|
|
id: base
|
|
uses: ./.github/actions/setup-base
|
|
|
|
- name: Install libs needed for native build
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get install -y libbluetooth-dev libgpiod-dev libyaml-cpp-dev openssl libssl-dev libulfius-dev liborcania-dev libusb-1.0-0-dev libi2c-dev libuv1-dev
|