Skip to content

Commit fb4cd82

Browse files
committed
Explicitly specify output filename
Signed-off-by: Gaurav Aggarwal <[email protected]>
1 parent 92f5616 commit fb4cd82

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

.github/workflows/kernel-demos.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ jobs:
159159
sudo apt update -y
160160
sudo apt install -y p7zip-full
161161
pushd $HOME
162-
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
162+
curl -L -o 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
163163
7z x ./msp430-gcc-full-linux-x64-installer-9.3.1.2.7z
164164
chmod +x ./msp430-gcc-full-linux-x64-installer-9.3.1.2.run
165165
sudo ./msp430-gcc-full-linux-x64-installer-9.3.1.2.run --prefix /usr/bin/msp430-gcc --mode unattended
@@ -215,21 +215,21 @@ jobs:
215215
216216
pushd $HOME
217217
# Download the mb-gcc toolchain from github
218-
curl -L -O https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/binutils-microblaze_2.35-2021-0623+1_amd64.deb;
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;
220-
curl -L -O https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/libnewlib-microblaze-dev_3.3.0-2021-0623+3_all.deb;
221-
curl -L -O https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/libnewlib-microblaze-doc_3.3.0-2021-0623+3_all.deb;
222-
curl -L -O https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/libnewlib-microblaze_3.3.0-2021-0623+3_all.deb;
223-
curl -L -O https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/newlib-source_3.3.0-2021-0623+3_all.deb;
218+
curl -L -o binutils-microblaze.deb https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/binutils-microblaze_2.35-2021-0623+1_amd64.deb;
219+
curl -L -o gcc-microblaze.deb https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/gcc-microblaze_10.2.0-2021-0623+2_amd64.deb;
220+
curl -L -o libnewlib-microblaze-dev.deb https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/libnewlib-microblaze-dev_3.3.0-2021-0623+3_all.deb;
221+
curl -L -o libnewlib-microblaze-doc.deb https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/libnewlib-microblaze-doc_3.3.0-2021-0623+3_all.deb;
222+
curl -L -o libnewlib-microblaze.deb https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/libnewlib-microblaze_3.3.0-2021-0623+3_all.deb;
223+
curl -L -o newlib-source.deb https://github.com/mdednev/mb-gcc/releases/download/2021-0623%2B2/newlib-source_3.3.0-2021-0623+3_all.deb;
224224
popd
225225
226226
# Install the packages for the toolchain
227-
sudo apt install -y $HOME/binutils-microblaze*.deb;
228-
sudo apt install -y $HOME/gcc-microblaze*.deb;
229-
sudo apt install -y $HOME/libnewlib-microblaze-dev*.deb;
230-
sudo apt install -y $HOME/libnewlib-microblaze-doc*.deb;
231-
sudo apt install -y $HOME/libnewlib-microblaze*.deb;
232-
sudo apt install -y $HOME/newlib-source*.deb;
227+
sudo apt install -y $HOME/binutils-microblaze.deb;
228+
sudo apt install -y $HOME/gcc-microblaze.deb;
229+
sudo apt install -y $HOME/libnewlib-microblaze-dev.deb;
230+
sudo apt install -y $HOME/libnewlib-microblaze-doc.deb;
231+
sudo apt install -y $HOME/libnewlib-microblaze.deb;
232+
sudo apt install -y $HOME/newlib-source.deb;
233233
234234
# Validate that the toolchain is in the path and can be called
235235
which mb-gcc

0 commit comments

Comments
 (0)