Skip to content

Multiplicative/Additive goes from a structural to a data feature #168

Multiplicative/Additive goes from a structural to a data feature

Multiplicative/Additive goes from a structural to a data feature #168

Workflow file for this run

name: Build Tests
on:
pull_request:
branches:
- main
jobs:
build_feature:
name: Build Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
include:
- os: ubuntu-latest
name: linux
testExe: build/sst-basic-blocks-test
- os: macos-latest
name: mac
testExe: build/sst-basic-blocks-test
- os: windows-latest
name: win
testExe: build/Release/sst-basic-blocks-test.exe
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build Smoke test
run: |
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release -DSST_BASIC_BLOCKS_BUILD_TESTS=TRUE -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64"
cmake --build ./build --config Release
- name: Run Smoke Test
run: |
ls ${{ matrix.testExe }}
${{ matrix.testExe }}