fix(build-extern-project): update the right branch #5
This file contains hidden or 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
| 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 |