Skip to content

Fix debug build with CLIP #67

Fix debug build with CLIP

Fix debug build with CLIP #67

Workflow file for this run

name: Ubuntu C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y libopencv-dev cmake g++
- name: Configure CMake
run: |
mkdir -p build
cd build
cmake ..
- name: Build
working-directory: build
run: make