File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -184,7 +184,10 @@ jobs:
184
184
shell : bash
185
185
if : success()
186
186
- 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
188
191
shell : bash
189
192
if : success()
190
193
- name : deploy
@@ -232,10 +235,7 @@ jobs:
232
235
shell : bash
233
236
if : success()
234
237
- 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
239
239
shell : bash
240
240
if : success()
241
241
- name : deploy
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ You can run these bash scripts to manually compile any GCC toolchains version th
52
52
53
53
* For downloading artifacts these build-scripts requires an active Internet connection.
54
54
55
- * These build-scripts are Linux-system specific only.
55
+ * These build-scripts supports Linux-machines only.
56
56
57
57
-----
58
58
Original file line number Diff line number Diff line change @@ -307,7 +307,7 @@ echo "Done Building Cross GDB Binaries..."
307
307
mv " $BUILDDIR " /cross-pi-gcc-" $GCC_VERSION " -$FOLDER_VERSION " $HOME "
308
308
cd " $HOME " || exit
309
309
# 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
311
311
echo " Done Building Cross GCC $GCC_VERSION Binaries..."
312
312
rm -rf " $HOME " /cross-pi-gcc-" $GCC_VERSION " -$FOLDER_VERSION
313
313
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ echo "Done Building Cross GDB Binaries..."
300
300
mv " $BUILDDIR " /cross-pi-gcc-" $GCC_VERSION " -$FOLDER_VERSION " $HOME "
301
301
cd " $HOME " || exit
302
302
# 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
304
304
echo " Done Building Cross GCC $GCC_VERSION Binaries..."
305
305
rm -rf " $HOME " /cross-pi-gcc-" $GCC_VERSION " -$FOLDER_VERSION
306
306
You can’t perform that action at this time.
0 commit comments