Skip to content

Release 0.1.1: change allocate_object to allocate; change free_object… #4

Release 0.1.1: change allocate_object to allocate; change free_object…

Release 0.1.1: change allocate_object to allocate; change free_object… #4

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
permissions:
contents: read
jobs:
build-and-test:
strategy:
matrix:
include:
- os: ubuntu-latest
triplet: x64-linux
build_type: Release
- os: ubuntu-latest
triplet: x64-linux
build_type: Debug
- os: windows-latest
triplet: x64-windows
build_type: Release
- os: windows-latest
triplet: x64-windows
build_type: Debug
- os: macos-latest
triplet: arm64-osx
build_type: Release
- os: macos-latest
triplet: arm64-osx
build_type: Debug
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Configure CMake
run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
- name: Build
run: cmake --build build --config ${{ matrix.build_type }}
- name: Run Tests
working-directory: build
run: ctest -C ${{ matrix.build_type }} --output-on-failure