-
Notifications
You must be signed in to change notification settings - Fork 5
65 lines (53 loc) · 1.8 KB
/
build-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
name: Build Tests
on:
pull_request:
branches:
- main
jobs:
build_feature:
name: Test $${ matrix.name }}
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
cmakeArgs:
- os: macos-latest
name: mac-x86
testExe: build/sst-basic-blocks-test
cmakeArgs: -DCMAKE_OSX_ARCHITECTURES=x86_64
- os: macos-latest
name: mac-arm
testExe: echo "unrunnable"
cmakeArgs: -DCMAKE_OSX_ARCHITECTURES=arm64
- os: macos-latest
name: mac-arm-nonative
testExe: echo "unrunnable"
cmakeArgs: -DCMAKE_OSX_ARCHITECTURES=x86_64 -DSST_BASIC_BLOCKS_SIMD_OMIT_NATIVE_ALIASES=TRUE
- os: windows-latest
name: win-x86
testExe: build/Release/sst-basic-blocks-test.exe
- os: windows-latest
name: win-arm64
testExe: echo "unrunnable"
cmakeArgs: -G"Visual Studio 17 2022" -A arm64 -DCMAKE_SYSTEM_VERSION=10
- os: windows-latest
name: win-arm64ec
testExe: echo "unrunnable"
cmakeArgs: -G"Visual Studio 17 2022" -A arm64ec -DCMAKE_SYSTEM_VERSION=10
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: recursive
- name: Build Smoke test
run: |
cmake -S . -B ./build -DCMAKE_BUILD_TYPE=Release ${{ matrix.cmakeArgs }} -DSST_BASIC_BLOCKS_BUILD_TESTS=TRUE
cmake --build ./build --config Release
- name: Run Smoke Test
run: |
ls ${{ matrix.testExe }}
${{ matrix.testExe }}