Add build packages for RHEL #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# | |
# Copyright (C) 2024 Linutronix GmbH | |
# Author Kurt Kanzenbach <[email protected]> | |
# | |
# SPDX-License-Identifier: BSD-2-Clause | |
# | |
name: Build code | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
uses: awalsh128/[email protected] | |
with: | |
packages: clang llvm cmake pkg-config libbpf-dev libyaml-dev libc6-dev build-essential libxdp-dev libssl-dev libmosquitto-dev bash sphinx python3-sphinx-rtd-theme | |
version: 1.0 | |
- name: Build code | |
run: ./tools/ci/build.sh |