Skip to content

Removed git modules and updated hybrid array mem free #4

Removed git modules and updated hybrid array mem free

Removed git modules and updated hybrid array mem free #4

Workflow file for this run

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