File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ permissions:
6
6
contents : write
7
7
8
8
env :
9
- SKIP_RISCV : 1
9
+ SKIP_RISCV : 0
10
10
SKIP_OPENOCD : 0
11
11
12
12
jobs :
Original file line number Diff line number Diff line change 101
101
102
102
if [[ " $SKIP_RISCV " != 1 ]]; then
103
103
# Package riscv toolchain separately as well
104
- version=" 14"
104
+ version=$( " ./$builddir /riscv-install/bin/riscv32-unknown-elf-gcc" -dumpversion)
105
+ version=$( echo $version | cut -d " ." -f 1)
105
106
echo " RISC-V Toolchain version $version "
106
107
107
108
filename=" riscv-toolchain-${version} -${suffix} .tar.gz"
Original file line number Diff line number Diff line change 109
109
110
110
if [[ " $SKIP_RISCV " != 1 ]]; then
111
111
# Package riscv toolchain separately as well
112
- version=" 14"
112
+ version=$( " ./$builddir /riscv-install/bin/riscv32-unknown-elf-gcc" -dumpversion)
113
+ version=$( echo $version | cut -d " ." -f 1)
113
114
echo " Risc-V Toolchain version $version "
114
115
115
116
filename=" riscv-toolchain-${version} -arm64-${suffix} .zip"
You can’t perform that action at this time.
0 commit comments