File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 9696 with :
9797 ssh-private-key : ${{ secrets.SSH_KEY }}
9898 - name : Build
99- run : ./build_linux.sh
99+ run : SKIP_RISCV=1 ./build_linux.sh
100100 - name : Upload Artifact
101101 uses : actions/upload-artifact@v4
102102 with :
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ done < <(echo "$repos")
4040
4141
4242cd $builddir
43- if [[ $( uname -m) == ' aarch64' ]]; then
43+ if [[ " $SKIP_RISCV " != 1 ]] && [[ $( uname -m) == ' aarch64' ]]; then
4444 # Only need this for pi, and it takes ages to build
4545 ../packages/linux/riscv/build-riscv-gcc.sh
4646fi
@@ -88,7 +88,7 @@ pushd "$builddir/openocd-install/usr/local/bin"
8888tar -a -cf " $topd /bin/$filename " * -C " ../share/openocd" " scripts"
8989popd
9090
91- if [[ $( uname -m) == ' aarch64' ]]; then
91+ if [[ " $SKIP_RISCV " != 1 ]] && [[ $( uname -m) == ' aarch64' ]]; then
9292 # Package riscv toolchain separately as well
9393 version=" 14"
9494 echo " Risc-V Toolchain version $version "
You can’t perform that action at this time.
0 commit comments