Skip to content

Replace bytecode.h with chunk.h in proxpl_api.h #49

Replace bytecode.h with chunk.h in proxpl_api.h

Replace bytecode.h with chunk.h in proxpl_api.h #49

Workflow file for this run

name: ProXPL CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
env:
BUILD_TYPE: Release
jobs:
build:
name: Build on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Setup CMake
uses: lukka/get-cmake@latest
- name: Configure
shell: bash
run: |
cmake -S . -B build \
-DCMAKE_BUILD_TYPE=${{ env.BUILD_TYPE }} \
-DBUILD_TESTS=OFF \
-DBUILD_BENCH=OFF
- name: Build (verbose)
shell: bash
run: cmake --build build --verbose