@@ -356,17 +356,9 @@ defaults:
356
356
TERM : xterm
357
357
MAKEFLAGS : -j 10
358
358
359
- - base_buildpack_focal_small : &base_buildpack_focal_small
359
+ - base_cimg_small : &base_cimg_small
360
360
docker :
361
- - image : buildpack-deps:focal
362
- resource_class : small
363
- environment :
364
- TERM : xterm
365
- MAKEFLAGS : -j 2
366
-
367
- - base_buildpack_latest_small : &base_buildpack_latest_small
368
- docker :
369
- - image : buildpack-deps:latest
361
+ - image : cimg/base:current
370
362
resource_class : small
371
363
environment :
372
364
TERM : xterm
@@ -681,12 +673,14 @@ jobs:
681
673
- gitter_notify_failure_unless_pr
682
674
683
675
chk_coding_style :
684
- << : *base_buildpack_focal_small
676
+ << : *base_cimg_small
685
677
steps :
686
678
- checkout
687
679
- run :
688
680
name : Install shellcheck
689
- command : apt -q update && apt install -y shellcheck
681
+ command : |
682
+ sudo apt -q update
683
+ sudo apt install -y shellcheck
690
684
- run :
691
685
name : Check for C++ coding style
692
686
command : ./scripts/check_style.sh
@@ -708,12 +702,14 @@ jobs:
708
702
- gitter_notify_failure_unless_pr
709
703
710
704
chk_pylint :
711
- << : *base_buildpack_focal_small
705
+ << : *base_cimg_small
712
706
steps :
713
707
- checkout
714
708
- run :
715
709
name : Install pip
716
- command : apt -q update && apt install -y python3-pip
710
+ command : |
711
+ sudo apt -q update
712
+ sudo apt install -y python3-pip
717
713
- run :
718
714
name : Install pylint and dependencies of the scripts that will be linted
719
715
command : python3 -m pip install
@@ -732,12 +728,14 @@ jobs:
732
728
- gitter_notify_failure_unless_pr
733
729
734
730
chk_antlr_grammar :
735
- << : *base_buildpack_focal_small
731
+ << : *base_cimg_small
736
732
steps :
737
733
- checkout
738
734
- run :
739
735
name : Install Java
740
- command : apt -q update && apt install -y openjdk-16-jdk
736
+ command : |
737
+ sudo apt -q update
738
+ sudo apt install -y openjdk-16-jdk
741
739
- run :
742
740
name : Run tests
743
741
command : ./scripts/test_antlr_grammar.sh
@@ -759,14 +757,14 @@ jobs:
759
757
- gitter_notify_failure_unless_pr
760
758
761
759
chk_proofs :
762
- << : *base_buildpack_latest_small
760
+ << : *base_cimg_small
763
761
steps :
764
762
- checkout
765
763
- run :
766
764
name : Z3 python deps
767
765
command : |
768
- apt-get -qq update
769
- apt-get -qy install python3-pip
766
+ sudo apt-get -qq update
767
+ sudo apt-get -qy install python3-pip
770
768
pip3 install --user z3-solver
771
769
- run : *run_proofs
772
770
- gitter_notify_failure_unless_pr
@@ -1405,6 +1403,10 @@ jobs:
1405
1403
1406
1404
b_bytecode_ubu :
1407
1405
<< : *base_ubuntu2004_small
1406
+ environment :
1407
+ TERM : xterm
1408
+ MAKEFLAGS : -j 2
1409
+ LC_ALL : C
1408
1410
steps :
1409
1411
- checkout
1410
1412
- attach_workspace :
@@ -1414,6 +1416,10 @@ jobs:
1414
1416
1415
1417
b_bytecode_osx :
1416
1418
<< : *base_osx
1419
+ environment :
1420
+ TERM : xterm
1421
+ MAKEFLAGS : -j 5
1422
+ LC_ALL : C
1417
1423
steps :
1418
1424
- checkout
1419
1425
- attach_workspace :
@@ -1449,6 +1455,7 @@ jobs:
1449
1455
<< : *base_node_small
1450
1456
environment :
1451
1457
SOLC_EMSCRIPTEN : " On"
1458
+ LC_ALL : C
1452
1459
steps :
1453
1460
- checkout
1454
1461
- attach_workspace :
0 commit comments