mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2025-12-05 21:15:39 -05:00
19 lines
336 B
YAML
19 lines
336 B
YAML
name: Matrix Build
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ Linux, Windows ]
|
|
bitness: [ 32, 64 ]
|
|
|
|
uses: acidicoala/KoalaBox/.github/workflows/build-cmake.yml@master
|
|
with:
|
|
module: SmokeAPI
|
|
os: ${{ matrix.os }}
|
|
bitness: ${{ matrix.bitness }}
|