Skip to content

Migrate engine + io_sim to oals::rt shim #1

Migrate engine + io_sim to oals::rt shim

Migrate engine + io_sim to oals::rt shim #1

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
branches: ['**']
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install deps (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y --no-install-recommends cmake ninja-build
- name: Install deps (macOS)
if: runner.os == 'macOS'
run: brew install cmake ninja
- name: Configure
run: cmake -G Ninja -B build -DCMAKE_BUILD_TYPE=Debug
- name: Build
run: cmake --build build