Skip to content

Commit 8356684

Browse files
committed
Fixes
1 parent c58de53 commit 8356684

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/builder_0_1.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,10 @@ jobs:
184184
shell: bash
185185
if: success()
186186
- name: after_success
187-
run: bash utils/SF_docs_deployer
187+
run: |
188+
mkdir -p $HOME/root
189+
cp docs/native-gcc.md $HOME/root/README.md
190+
bash utils/SF_docs_deployer
188191
shell: bash
189192
if: success()
190193
- name: deploy
@@ -232,10 +235,7 @@ jobs:
232235
shell: bash
233236
if: success()
234237
- name: after_success
235-
run: |
236-
mkdir -p $HOME/root
237-
cp docs/native-gcc.md $HOME/root/README.md
238-
bash utils/SF_docs_deployer
238+
run: bash utils/SF_docs_deployer
239239
shell: bash
240240
if: success()
241241
- name: deploy

build-scripts/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ You can run these bash scripts to manually compile any GCC toolchains version th
5252

5353
* For downloading artifacts these build-scripts requires an active Internet connection.
5454

55-
* These build-scripts are Linux-system specific only.
55+
* These build-scripts supports Linux-machines only.
5656

5757
-----
5858

build-scripts/RTBuilder_32b

+1-1
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ echo "Done Building Cross GDB Binaries..."
307307
mv "$BUILDDIR"/cross-pi-gcc-"$GCC_VERSION"-$FOLDER_VERSION "$HOME"
308308
cd "$HOME" || exit
309309
#compress with maximum possible compression level.
310-
tar cf - cross-pi-gcc-"$GCC_VERSION"-$FOLDER_VERSION | pigz -9 -p 32 > cross-gcc-"$GCC_VERSION"-pi_"$RPI_TYPE".tar.gz
310+
tar cf - cross-pi-gcc-"$GCC_VERSION"-$FOLDER_VERSION | pigz -9 > cross-gcc-"$GCC_VERSION"-pi_"$RPI_TYPE".tar.gz
311311
echo "Done Building Cross GCC $GCC_VERSION Binaries..."
312312
rm -rf "$HOME"/cross-pi-gcc-"$GCC_VERSION"-$FOLDER_VERSION
313313

build-scripts/RTBuilder_64b

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ echo "Done Building Cross GDB Binaries..."
300300
mv "$BUILDDIR"/cross-pi-gcc-"$GCC_VERSION"-$FOLDER_VERSION "$HOME"
301301
cd "$HOME" || exit
302302
#compress with maximum possible compression level.
303-
tar cf - cross-pi-gcc-"$GCC_VERSION"-$FOLDER_VERSION | pigz -9 -p 32 > cross-gcc-"$GCC_VERSION"-pi_"$RPI_TYPE".tar.gz
303+
tar cf - cross-pi-gcc-"$GCC_VERSION"-$FOLDER_VERSION | pigz -9 > cross-gcc-"$GCC_VERSION"-pi_"$RPI_TYPE".tar.gz
304304
echo "Done Building Cross GCC $GCC_VERSION Binaries..."
305305
rm -rf "$HOME"/cross-pi-gcc-"$GCC_VERSION"-$FOLDER_VERSION
306306

0 commit comments

Comments
 (0)