File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 42
42
# ${{ env.stepName }}
43
43
echo -e "::group::${{ env.bashInfo }} ${{ env.stepName }} ${{ env.bashEnd }}"
44
44
45
- wget -nv -qO- https://scan.coverity.com/download/linux64 --post-data "token=${COVERITY_TOKEN}&project=FreeRTOS-Kernel" | tar -zx --one-top-level=cov_scan --strip-components 1
46
- echo "cov_scan_path=$(pwd)/cov_scan/bin" >> $GITHUB_ENV
47
-
45
+ wget -nv -qO- https://scan.coverity.com/download/linux64 --post-data "token=${COVERITY_TOKEN}&project=FreeRTOS-Kernel" | tar -zx --one-top-level=cov_scan -C "$HOME"
46
+ echo "cov_scan_path=$HOME/cov_scan/bin" >> $GITHUB_ENV
48
47
echo "::endgroup::"
49
48
echo -e "${{ env.bashPass }} ${{ env.stepName }} ${{ env.bashEnd }} "
50
49
Original file line number Diff line number Diff line change @@ -156,9 +156,10 @@ jobs:
156
156
run : |
157
157
# ${{ env.stepName }}
158
158
echo -e "::group::${{ env.bashInfo }} ${{ env.stepName }} ${{ env.bashEnd }}"
159
- curl -L -O https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-LlCjWuAbzH/9.3.1.2/msp430-gcc-full-linux-x64-installer-9.3.1.2.7z
159
+ curl -L -o "$HOME/msp430-gcc-full-linux-x64-installer-9.3.1.2.7z" https://dr-download.ti.com/software-development/ide-configuration-compiler-or-debugger/MD-LlCjWuAbzH/9.3.1.2/msp430-gcc-full-linux-x64-installer-9.3.1.2.7z
160
160
sudo apt update -y
161
161
sudo apt install -y p7zip-full
162
+ cd "$HOME"
162
163
7z x ./msp430-gcc-full-linux-x64-installer-9.3.1.2.7z
163
164
chmod +x ./msp430-gcc-full-linux-x64-installer-9.3.1.2.run
164
165
sudo ./msp430-gcc-full-linux-x64-installer-9.3.1.2.run --prefix /usr/bin/msp430-gcc --mode unattended
@@ -211,6 +212,8 @@ jobs:
211
212
sudo apt install -y autogen gawk libgmp-dev libmpc-dev libmpfr-dev
212
213
sudo apt install -y patchutils sharutils zlib1g-dev autoconf2.64
213
214
215
+ cd "$HOME"
216
+
214
217
# Download the mb-gcc toolchain from github
215
218
curl -L -O https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/binutils-microblaze_2.35-2021-0623+1_amd64.deb;
216
219
curl -L -O https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/gcc-microblaze_10.2.0-2021-0623+2_amd64.deb;
You can’t perform that action at this time.
0 commit comments