Skip to content

Commit 79515eb

Browse files
theComputeKidvpirogov
authored andcommitted
github: workflows: Add macos smoke tests
Signed-off-by: Hamza Butt <hamza.butt@arm.com>
1 parent 71f41a6 commit 79515eb

File tree

1 file changed

+24
-10
lines changed

1 file changed

+24
-10
lines changed

.github/workflows/ci-aarch64.yml

+24-10
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,24 @@ permissions: read-all
3535

3636
jobs:
3737
macos:
38-
name: macOS
3938
runs-on: macos-14
4039
strategy:
4140
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-
]
41+
compiler: [{ CC: clang, CXX: clang++ }, { CC: gcc-14, CXX: g++-14 }]
42+
config:
43+
[
44+
{
45+
CMAKE_BUILD_TYPE: Debug,
46+
ACL_WITH_ASSERTS: '1',
47+
IGNORED_TEST_FAILS: 'cpu-primitives-deconvolution-cpp|test_benchdnn_modeC_lnorm_smoke_cpu|test_benchdnn_modeC_brgemm_smoke_cpu'
48+
},
49+
{
50+
CMAKE_BUILD_TYPE: Release,
51+
ACL_WITH_ASSERTS: '0',
52+
IGNORED_TEST_FAILS: 'cpu-primitives-deconvolution-cpp|test_benchdnn_modeC_lnorm_smoke_cpu'
53+
}
54+
]
55+
name: macOS (${{ matrix.compiler.CC }}, ${{ matrix.config.CMAKE_BUILD_TYPE }})
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)