Skip to content

Commit 5b23cf5

Browse files
cencarnamclaireb
authored andcommitted
ci: add workflow for projects and nnlib
Signed-off-by: Cedric Encarnacion <cedricjustine.encarnacion@analog.com>
1 parent 7c017e9 commit 5b23cf5

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

.github/workflows/build-and-test.yml

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,39 @@ jobs:
2727
- name: Build libTFLM using CCES ${{ matrix.cces_ver }}
2828
shell: bash
2929
run:
30-
make -j4 CCES=${{ env.CCES_PATH }}
30+
make -j4 SHARCFX_ROOT=${{ env.CCES_PATH }}
31+
32+
- name: Build libadi_sharcfx_nn using CCES ${{ matrix.cces_ver }}
33+
shell: bash
34+
run: |
35+
cd adi_sharcfx_nn/Project
36+
make -j4 SHARCFX_ROOT=${{ env.CCES_PATH }}
37+
38+
- name: Build denoiser example project
39+
shell: bash
40+
run: |
41+
cd Utils/automated-model-conversion/dtln
42+
bash convert_models.sh
43+
cd ../../../examples/denoiser/denoiser_fileio
44+
make -j4 SHARCFX_ROOT=${{ env.CCES_PATH }}
45+
cd ../denoiser_realtime
46+
make -j4 SHARCFX_ROOT=${{ env.CCES_PATH }}
47+
48+
- name: Build kws example project
49+
shell: bash
50+
run: |
51+
cd examples/keyword_spotter/kws_fileio
52+
make -j4 SHARCFX_ROOT=${{ env.CCES_PATH }}
53+
cd ../kws_realtime
54+
make -j4 SHARCFX_ROOT=${{ env.CCES_PATH }}
55+
56+
- name: Build genre_id example project
57+
shell: bash
58+
run: |
59+
cd Utils/automated-model-conversion/genre_identification
60+
bash convert_models.sh
61+
cd ../../../examples/genre_identification/genre_id_fileio
62+
make -j4 SHARCFX_ROOT=${{ env.CCES_PATH }}
3163
3264
- name: Test libTFLM artifact using CCES ${{ matrix.cces_ver }}
3365
shell: bash

0 commit comments

Comments
 (0)