Removed git modules and updated hybrid array mem free #4
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 Build and Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the repository | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# Set up GCC and make | |
- name: Install build tools | |
run: sudo apt-get update && sudo apt-get install -y build-essential | |
# Prepare build directories | |
- name: Prepare build directories | |
run: make prep | |
# Debug build | |
- name: Build in debug mode | |
run: | | |
make debug | |
# Release build | |
- name: Build in release mode | |
run: | | |
make release | |
# Run tests | |
- name: Run tests in debug mode | |
run: | | |
./debug/exefile |