Fix assert on Array::Insert() when full and count is 0 #87
This file contains 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: Ubuntu g++ | |
on: [push] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Packages | |
run: | | |
sudo apt update -qq | |
sudo apt install -y --no-install-recommends libgl1-mesa-dev uuid-dev | |
- name: Create Build Directory | |
run: cmake -E make_directory build | |
- name: Configure | |
run: CC=gcc CXX=g++ cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DAE_LEAN_AND_MEAN=OFF -DAE_WERROR=ON | |
- name: Build | |
run: make -C build all -j$(nproc) | |
- name: Test | |
run: build/test/test |