Skip to content

fix(build-extern-project): update the right branch #5

fix(build-extern-project): update the right branch

fix(build-extern-project): update the right branch #5

Workflow file for this run

name: CI
on:
push:
branches: [ main, feature/stack-buffer-bounds-check ]
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install build dependencies
run: |
sudo apt-get update
sudo apt-get install -y cmake ninja-build build-essential python3
- name: Configure and build (CMake)
run: |
mkdir -p build
cd build
cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Release
ninja stack_usage_analyzer
- name: Run analyzer tests (Python framework)
run: |
python3 run_tests.py