mirror of
https://github.com/acidicoala/SmokeAPI.git
synced 2026-01-24 13:32:51 -05:00
20 lines
377 B
YAML
20 lines
377 B
YAML
name: Matrix Build
|
|
|
|
on:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
module: [ SmokeAPI ]
|
|
os: [ Linux, Windows ]
|
|
bitness: [ 32, 64 ]
|
|
|
|
uses: acidicoala/KoalaBox/.github/workflows/build-cmake.yml@master
|
|
with:
|
|
module: ${{ matrix.module }}
|
|
os: ${{ matrix.os }}
|
|
bitness: ${{ matrix.bitness }}
|