Skip to content

Commit a4cfa7e

Browse files
fanghuaqidongyongtao
authored andcommitted
ci: remove demosoc from github ci workflow
Signed-off-by: Huaqi Fang <578567190@qq.com>
1 parent 28bacd1 commit a4cfa7e

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-22.04
2929
strategy:
3030
matrix:
31-
soc: [demosoc, evalsoc]
31+
soc: [evalsoc]
3232
core: [ux900, ux900fd, u900, u900fd]
3333
boot_mode: [sd, flash]
3434

@@ -79,7 +79,7 @@ jobs:
7979
8080
# Build bootimages
8181
- name: Build bootimages for ${{ matrix.soc }} - ${{ matrix.core }} - ${{ matrix.boot_mode }}
82-
if: ${{ !( matrix.soc == 'demosoc' && startsWith(matrix.core, 'u900')) }}
82+
if: ${{ !( matrix.soc == 'evalsoc' && startsWith(matrix.core, 'u900')) }}
8383
run: |
8484
export SOC=${{ matrix.soc }} CORE=${{ matrix.core }} BOOT_MODE=${{ matrix.boot_mode }}
8585
echo "Generate QEMU Disk"
@@ -110,7 +110,7 @@ jobs:
110110
111111
# Run on qemu
112112
- name: Run and test on qemu for ${{ matrix.soc }} - ${{ matrix.core }} - ${{ matrix.boot_mode }}
113-
if: ${{ ( matrix.soc == 'evalsoc' ) }}
113+
if: ${{ !( matrix.soc == 'evalsoc' && startsWith(matrix.core, 'u900')) }}
114114
run: |
115115
QEMU_PATH=$(pwd)/prebuilt_tools/linux_qemu/bin:$(pwd)/prebuilt_tools/qemu/bin
116116
export PATH=${QEMU_PATH}:$PATH
@@ -127,8 +127,8 @@ jobs:
127127
}
128128
129129
- name: Upload bootimages for ${{ matrix.soc }} - ${{ matrix.core }} - ${{ matrix.boot_mode }}
130-
if: ${{ !( matrix.soc == 'demosoc' && startsWith(matrix.core, 'u900')) }}
131-
uses: actions/upload-artifact@v4
130+
if: ${{ !( matrix.soc == 'evalsoc' && startsWith(matrix.core, 'u900')) }}
131+
uses: actions/upload-artifact@v3
132132
with:
133133
name: bootimages_${{ matrix.soc }}_${{ matrix.core }}_${{ matrix.boot_mode }}
134134
path: |
@@ -137,8 +137,8 @@ jobs:
137137
work/${{ matrix.soc }}/buildstamp.txt
138138
139139
- name: Upload qemu images for ${{ matrix.soc }} - ${{ matrix.core }} - ${{ matrix.boot_mode }}
140-
if: ${{ ( matrix.soc == 'evalsoc' ) }}
141-
uses: actions/upload-artifact@v4
140+
if: ${{ !( matrix.soc == 'evalsoc' && startsWith(matrix.core, 'u900')) }}
141+
uses: actions/upload-artifact@v3
142142
with:
143143
name: qemu_images_${{ matrix.soc }}_${{ matrix.core }}_${{ matrix.boot_mode }}
144144
path: |

0 commit comments

Comments
 (0)