Skip to content

editorconfig - fix editor config warnings #3

editorconfig - fix editor config warnings

editorconfig - fix editor config warnings #3

Workflow file for this run

name: build
on:
workflow_call:
inputs:
os:
required: true
type: string
jobs:
build:
runs-on: ubuntu-latest
container: ${{ inputs.os }}
steps:
- name: Install git
run: dnf install -y git
- name: Check out repository code
uses: actions/checkout@v4
- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
pcap: true
dpdk: true
nfb: true
- name: Mark github workspace as safe
run: git config --system --add safe.directory $PWD
- name: Create build directory
run: mkdir build
- name: Configure CMake
run: |

Check failure on line 30 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build.yml

Invalid workflow file

You have an error in your yaml syntax on line 30
cd build
cmake3 .. \
-DCMAKE_BUILD_TYPE=Debug \
-DENABLE_INPUT_PCAP=ON \
-DENABLE_INPUT_DPDK=ON \
-DENABLE_INPUT_NFB=ON \
-DENABLE_PROCESS_EXPERIMENTAL=ON
- name: make
run: make