mirror of
https://github.com/domcyrus/rustnet.git
synced 2026-04-30 16:59:30 -05:00
069a203ae9
- Add build-platforms.yml reusable workflow with full build matrix - Add composite actions for setup-linux-deps, build-rustnet, build-static - Simplify test-platform-builds.yml and release.yml to call shared workflow - Update RELEASE.md: run test builds before release prep
12 lines
334 B
YAML
12 lines
334 B
YAML
name: 'Setup Linux Build Dependencies'
|
|
description: 'Install dependencies required for building RustNet on Linux'
|
|
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: Install dependencies
|
|
shell: bash
|
|
run: |
|
|
sudo apt-get update -y
|
|
sudo apt-get install -y libpcap-dev libelf-dev zlib1g-dev clang llvm pkg-config
|