Skip to content

Commit d0ebafc

Browse files
committed
ci: only run qemu on evalsoc in github workflow
demosoc is no longer supported on qemu and hardware Signed-off-by: Huaqi Fang <[email protected]>
1 parent 35f3d09 commit d0ebafc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
106106
# Run on qemu
107107
- name: Run and test on qemu for ${{ matrix.soc }} - ${{ matrix.core }} - ${{ matrix.boot_mode }}
108-
if: ${{ !( matrix.soc == 'demosoc' && startsWith(matrix.core, 'u900')) }}
108+
if: ${{ ( matrix.soc == 'evalsoc' ) }}
109109
run: |
110110
QEMU_PATH=$(pwd)/prebuilt_tools/linux_qemu/bin:$(pwd)/prebuilt_tools/qemu/bin
111111
export PATH=${QEMU_PATH}:$PATH
@@ -132,7 +132,7 @@ jobs:
132132
work/${{ matrix.soc }}/buildstamp.txt
133133
134134
- name: Upload qemu images for ${{ matrix.soc }} - ${{ matrix.core }} - ${{ matrix.boot_mode }}
135-
if: ${{ !( matrix.soc == 'demosoc' && startsWith(matrix.core, 'u900')) }}
135+
if: ${{ ( matrix.soc == 'evalsoc' ) }}
136136
uses: actions/upload-artifact@v4
137137
with:
138138
name: qemu_images_${{ matrix.soc }}_${{ matrix.core }}_${{ matrix.boot_mode }}

0 commit comments

Comments
 (0)