Skip to content

Commit 9a7b5b2

Browse files
committed
workflows: remove v_path specification, extend simlimit, enable SSE-320 UART check
1 parent 0540945 commit 9a7b5b2

3 files changed

Lines changed: 3 additions & 11 deletions

File tree

.github/workflows/Build_Run_FVP_Audio.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,8 @@ jobs:
118118
${{ matrix.context.model }} \
119119
-a ./out/${{matrix.context.proj}}/${{matrix.context.target_type}}/${{matrix.context.build_type}}/${{matrix.context.proj}}.${{matrix.toolchain.ext}} \
120120
-f ./board/${{matrix.context.layer}}/fvp_config.txt \
121-
-C ${{matrix.context.mps}}_board.v_path=./board/${{matrix.context.layer}}/vsi/python/ \
122121
-C ${{matrix.context.mps}}_board.uart0.out_file=${{matrix.context.proj}}_${{matrix.context.build_type}}_${{matrix.context.target_type}}_${{matrix.toolchain.name}}.log \
123-
--simlimit 30
122+
--simlimit 100
124123
125124
- name: Show UART output
126125
working-directory: ./example/FVP_Audio
@@ -129,8 +128,6 @@ jobs:
129128
cat ${{matrix.context.proj}}_${{matrix.context.build_type}}_${{matrix.context.target_type}}_${{matrix.toolchain.name}}.log
130129
131130
- name: Check UART output
132-
# Disable SSE-320 output check due to known issue with FVP UART output
133-
if: matrix.context.target_type != 'SSE-320'
134131
working-directory: ./example/FVP_Audio
135132
run: |
136133
echo "Check FVP UART output:"

.github/workflows/Build_Run_FVP_Hello.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
-a ./out/${{matrix.context.proj}}/${{matrix.context.target_type}}/${{matrix.context.build_type}}/${{matrix.context.proj}}.${{matrix.toolchain.ext}} \
9999
-f ./board/${{matrix.context.layer}}/fvp_config.txt \
100100
-C ${{matrix.context.mps}}_board.uart0.out_file=${{matrix.context.proj}}_${{matrix.context.build_type}}_${{matrix.context.target_type}}_${{matrix.toolchain.name}}.log \
101-
--simlimit 30
101+
--simlimit 100
102102
103103
- name: Show example output
104104
working-directory: ./example/FVP_Hello
@@ -107,8 +107,6 @@ jobs:
107107
cat ${{matrix.context.proj}}_${{matrix.context.build_type}}_${{matrix.context.target_type}}_${{matrix.toolchain.name}}.log
108108
109109
- name: Check example output
110-
# Disable SSE-320 output check due to known issue with FVP UART output
111-
if: matrix.context.target_type != 'SSE-320'
112110
working-directory: ./example/FVP_Hello
113111
run: |
114112
echo "Check FVP UART output:"

.github/workflows/Build_Run_FVP_Video.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,8 @@ jobs:
118118
${{ matrix.context.model }} \
119119
-a ./out/${{matrix.context.proj}}/${{matrix.context.target_type}}/${{matrix.context.build_type}}/${{matrix.context.proj}}.${{matrix.toolchain.ext}} \
120120
-f ./board/${{matrix.context.layer}}/fvp_config.txt \
121-
-C ${{matrix.context.mps}}_board.v_path=./board/${{matrix.context.layer}}/vsi/python/ \
122121
-C ${{matrix.context.mps}}_board.uart0.out_file=${{matrix.context.proj}}_${{matrix.context.build_type}}_${{matrix.context.target_type}}_${{matrix.toolchain.name}}.log \
123-
--simlimit 30
122+
--simlimit 100
124123
125124
- name: Show UART output
126125
working-directory: ./example/FVP_Video
@@ -129,8 +128,6 @@ jobs:
129128
cat ${{matrix.context.proj}}_${{matrix.context.build_type}}_${{matrix.context.target_type}}_${{matrix.toolchain.name}}.log
130129
131130
- name: Check UART output
132-
# Disable SSE-320 output check due to known issue with FVP UART output
133-
if: matrix.context.target_type != 'SSE-320'
134131
working-directory: ./example/FVP_Video
135132
run: |
136133
echo "Check FVP UART output:"

0 commit comments

Comments
 (0)