mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +00:00
11 lines
319 B
YAML
11 lines
319 B
YAML
name: Install system dependencies
|
|
description: Installs system dependencies in the environment
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install system dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y build-essential clang libclang-dev libssl-dev pkg-config
|
|
shell: bash
|