Skip to content

#111 initial implementation of gc #294

#111 initial implementation of gc

#111 initial implementation of gc #294

Workflow file for this run

name: CMake build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
BUILD_TYPE: DEBUG
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ctect_option:
- "-DCHAIVM_ADD_MEM_SANITIZER=OFF -DCHAIVM_ADD_THREAD_SANITIZER=OFF"
- "-DCHAIVM_ADD_MEM_SANITIZER=OFF -DCHAIVM_ADD_THREAD_SANITIZER=ON"
- "-DCHAIVM_ADD_MEM_SANITIZER=ON -DCHAIVM_ADD_THREAD_SANITIZER=OFF"
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install-deps
run: |
sudo apt update
sudo apt install ninja-build flex libfl-dev\
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} ${{matrix.ctect_option}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest --test-dir ${{github.workspace}}/build/test --output-on-failure