File tree 2 files changed +31
-9
lines changed 2 files changed +31
-9
lines changed Original file line number Diff line number Diff line change @@ -337,7 +337,7 @@ jobs:
337
337
cfg :
338
338
# - {target: linux, arch: 64, gcc: 6}
339
339
- {target: linux, arch: 64, gcc: 14}
340
- - {target: linux, arch: 64, gcc: 10}
340
+ # - {target: linux, arch: 64, gcc: 10}
341
341
env :
342
342
TARGET : ${{matrix.cfg.target}}
343
343
GCC : ${{matrix.cfg.gcc}}
@@ -363,8 +363,19 @@ jobs:
363
363
- name : Install dependencies
364
364
run : ./scripts/ci/$TARGET/$ARCH/install.sh;
365
365
366
+ - name : Check GCC pre
367
+ shell : bash
368
+ run : gcc -v
369
+
370
+ - name : Setup GCC14
371
+ run : ./scripts/linux/setupGCC.sh
372
+
373
+ - name : Check GCC post
374
+ shell : bash
375
+ run : gcc -v
376
+
366
377
- name : Download libs
367
- run : ./scripts/linux/download_libs.sh -t $RELEASE -a ${{matrix.cfg.arch}} -g ${{matrix.cfg.GCC}}
378
+ run : ./scripts/linux/download_libs.sh -t $RELEASE -a ${{matrix.cfg.arch}} # -g ${{matrix.cfg.GCC}}
368
379
369
380
- name : Build
370
381
run : |
@@ -406,8 +417,19 @@ jobs:
406
417
- name : Install dependencies
407
418
run : ./scripts/ci/$TARGET/$ARCH/install.sh;
408
419
420
+ - name : Check GCC pre
421
+ shell : bash
422
+ run : gcc -v
423
+
424
+ - name : Setup GCC14
425
+ run : ./scripts/linux/setupGCC.sh
426
+
427
+ - name : Check GCC post
428
+ shell : bash
429
+ run : gcc -v
430
+
409
431
- name : Download libs
410
- run : ./scripts/linux/download_libs.sh -t $RELEASE -a ${{matrix.cfg.arch}} -g ${{matrix.cfg.GCC}}
432
+ run : ./scripts/linux/download_libs.sh -t $RELEASE -a ${{matrix.cfg.arch}} # -g ${{matrix.cfg.GCC}}
411
433
412
434
- name : Build
413
435
run : |
Original file line number Diff line number Diff line change 197
197
198
198
if [ " $PLATFORM " == " linux" ]; then
199
199
if [ " $GCC_VERSION " == 0 ]; then
200
- if command -v gcc & > /dev/null; then
201
- GCC_VERSION=$( gcc -dumpversion | cut -f1 -d.)
202
- echo " GCC_VERSION from bash: [$GCC_VERSION ]"
203
- else
204
- GCC_VERSION=6
205
- fi
200
+ # if command -v gcc &> /dev/null; then
201
+ # GCC_VERSION=$(gcc -dumpversion | cut -f1 -d.)
202
+ # echo "GCC_VERSION from bash: [$GCC_VERSION]"
203
+ # else
204
+ # GCC_VERSION=6
205
+ # fi
206
206
if [ " $GCC_VERSION " -gt 14 ]; then
207
207
echo " GCC version is greater than 14. latest supported"
208
208
GCC_VERSION=14
You can’t perform that action at this time.
0 commit comments