Skip to content

Added TLSF Allocator for dyamic heap allocation #478

Added TLSF Allocator for dyamic heap allocation

Added TLSF Allocator for dyamic heap allocation #478

Workflow file for this run

name: Ubuntu
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: perform checkout
uses: actions/checkout@v4
- name: update apt
run: sudo apt-get update
- name: install vulkan dependencies
run: sudo apt install git build-essential libx11-xcb-dev libxkbcommon-dev libwayland-dev libxrandr-dev
- name: install glfw dependencies
run: sudo apt install libasound2-dev mesa-common-dev libx11-dev libxrandr-dev libxi-dev xorg-dev libgl1-mesa-dev libglu1-mesa-dev
- name: perform setup
run: ./scripts/setup.sh
- name: build all targets
run: make
- name: run tests
run: |
cd ./bin/tests/build
./app
- name: compress output
shell: bash
run: tar -cvf ./linux.tar -C ./output .
- name: upload artifacts
uses: actions/upload-artifact@v4
with:
name: linux_output
path: ./linux.tar