Skip to content

Commit e0d6ddf

Browse files
committed
github: workflows: Add macos smoke tests
Signed-off-by: Hamza Butt <hamza.butt@arm.com>
1 parent 0185923 commit e0d6ddf

File tree

1 file changed

+23
-9
lines changed

1 file changed

+23
-9
lines changed

.github/workflows/ci-aarch64.yml

+23-9
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,20 @@ jobs:
3939
runs-on: macos-14
4040
strategy:
4141
matrix:
42-
compiler: [
43-
{CC: clang, CXX: clang++},
44-
{CC: gcc-14, CXX: g++-14}
45-
]
46-
config: [
47-
{CMAKE_BUILD_TYPE: Debug, ACL_WITH_ASSERTS: '1'},
48-
{CMAKE_BUILD_TYPE: Release, ACL_WITH_ASSERTS: '0'}
49-
]
42+
compiler: [{ CC: clang, CXX: clang++ }, { CC: gcc-14, CXX: g++-14 }]
43+
config:
44+
[
45+
{
46+
CMAKE_BUILD_TYPE: Debug,
47+
ACL_WITH_ASSERTS: '1',
48+
IGNORED_TEST_FAILS: 'cpu-primitives-deconvolution-cpp|test_benchdnn_modeC_lnorm_smoke_cpu|test_benchdnn_modeC_brgemm_smoke_cpu'
49+
},
50+
{
51+
CMAKE_BUILD_TYPE: Release,
52+
ACL_WITH_ASSERTS: '0',
53+
IGNORED_TEST_FAILS: 'cpu-primitives-deconvolution-cpp|test_benchdnn_modeC_lnorm_smoke_cpu'
54+
}
55+
]
5056
steps:
5157
- name: Get number of CPU cores
5258
uses: SimenB/github-actions-cpu-cores@97ba232459a8e02ff6121db9362b09661c875ab8 # v2.0.0
@@ -85,7 +91,7 @@ jobs:
8591
CC: ${{ matrix.compiler.CC }}
8692
CXX: ${{ matrix.compiler.CXX }}
8793
- name: Configure oneDNN
88-
run: cmake -B${{ github.workspace }}/oneDNN/build -S${{ github.workspace }}/oneDNN -DDNNL_AARCH64_USE_ACL=ON -DONEDNN_BUILD_GRAPH=0 -DONEDNN_WERROR=OFF -DDNNL_BUILD_FOR_CI=ON -DCMAKE_BUILD_TYPE=${{ matrix.config.CMAKE_BUILD_TYPE }}
94+
run: cmake -B${{ github.workspace }}/oneDNN/build -S${{ github.workspace }}/oneDNN -DDNNL_AARCH64_USE_ACL=ON -DONEDNN_BUILD_GRAPH=0 -DONEDNN_WERROR=OFF -DDNNL_BUILD_FOR_CI=ON -DONEDNN_TEST_SET=SMOKE -DCMAKE_BUILD_TYPE=${{ matrix.config.CMAKE_BUILD_TYPE }}
8995
working-directory: ${{ github.workspace }}/oneDNN
9096
env:
9197
DYLD_LIBRARY_PATH: ${{ github.workspace }}/ComputeLibrary/lib
@@ -98,3 +104,11 @@ jobs:
98104
env:
99105
DYLD_LIBRARY_PATH: ${{ github.workspace }}/ComputeLibrary/lib
100106
ACL_ROOT_DIR: ${{ github.workspace }}/ComputeLibrary
107+
# Only run smoke tests for clang. We only test gcc for build.
108+
# Failure list currently depends on config. Exclude current failures.
109+
- if: matrix.compiler.CC == 'clang'
110+
name: Run oneDNN smoke tests
111+
run: ctest --test-dir ${{ github.workspace }}/oneDNN/build -j${{ steps.cpu-cores.outputs.count }} -E '${{ matrix.config.IGNORED_TEST_FAILS }}'
112+
working-directory: ${{ github.workspace }}/oneDNN
113+
env:
114+
DYLD_LIBRARY_PATH: ${{ github.workspace }}/ComputeLibrary/lib

0 commit comments

Comments
 (0)