Skip to content

Commit 246f161

Browse files
committed
CI: Tweak some job names to better reflect what they run
1 parent c4121b4 commit 246f161

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.circleci/config.yml

+20-20
Original file line numberDiff line numberDiff line change
@@ -491,15 +491,15 @@ jobs:
491491
- checkout
492492
- run: *run_docs_pragma_min_version
493493

494-
t_pyscripts_ubu:
494+
t_ubu_pyscripts:
495495
<<: *base_ubuntu2004
496496
steps:
497497
- checkout
498498
- run:
499499
name: Python unit tests
500500
command: python3 test/pyscriptTests.py
501501

502-
t_pyscripts_win:
502+
t_win_pyscripts:
503503
<<: *base_win_powershell
504504
steps:
505505
- run: git config --global core.autocrlf false
@@ -767,7 +767,7 @@ jobs:
767767
path: docs/_build/html/
768768
destination: docs-html
769769

770-
t_ubu_soltest: &t_ubu_soltest
770+
t_ubu_soltest_all: &t_ubu_soltest_all
771771
<<: *base_ubuntu2004
772772
parallelism: 6
773773
<<: *steps_soltest_all
@@ -806,10 +806,10 @@ jobs:
806806
OPTIMIZE: 0
807807
<<: *steps_soltest
808808

809-
t_ubu_release_soltest: &t_ubu_release_soltest
809+
t_ubu_release_soltest_all: &t_ubu_release_soltest_all
810810
# NOTE: This definition is identical to t_ubu_soltest_all but in the workflow we make it depend on
811811
# a different job (b_ubu_release) so the workspace it attaches contains a different executable.
812-
<<: *t_ubu_soltest
812+
<<: *t_ubu_soltest_all
813813

814814
t_ubu_cli: &t_ubu_cli
815815
<<: *base_ubuntu2004
@@ -825,7 +825,7 @@ jobs:
825825
ASAN_OPTIONS: check_initialization_order=true:detect_stack_use_after_return=true:strict_init_order=true:strict_string_checks=true:detect_invalid_pointer_pairs=2
826826
<<: *steps_cmdline_tests
827827

828-
t_ubu_asan:
828+
t_ubu_asan_soltest:
829829
<<: *base_ubuntu2004
830830
parallelism: 6
831831
environment:
@@ -835,7 +835,7 @@ jobs:
835835
ASAN_OPTIONS: check_initialization_order=true:detect_stack_use_after_return=true:strict_init_order=true:strict_string_checks=true:detect_invalid_pointer_pairs=2
836836
<<: *steps_soltest
837837

838-
t_ubu_asan_clang:
838+
t_ubu_asan_clang_soltest:
839839
<<: *base_ubuntu2004_clang
840840
environment:
841841
EVM: << pipeline.parameters.evm-version >>
@@ -844,7 +844,7 @@ jobs:
844844
ASAN_OPTIONS: check_initialization_order=true:detect_stack_use_after_return=true:strict_init_order=true:strict_string_checks=true:detect_invalid_pointer_pairs=2
845845
<<: *steps_soltest
846846

847-
t_ubu_ubsan_clang:
847+
t_ubu_ubsan_clang_soltest:
848848
<<: *base_ubuntu2004_clang
849849
environment:
850850
EVM: << pipeline.parameters.evm-version >>
@@ -978,7 +978,7 @@ jobs:
978978
environment:
979979
FORCE_RELEASE: ON
980980

981-
t_win: &t_win
981+
t_win_soltest: &t_win_soltest
982982
<<: *base_win_powershell
983983
steps:
984984
# NOTE: Git's default core.autocrlf is fine for running soltest. We get additional coverage
@@ -995,8 +995,8 @@ jobs:
995995
- store_test_results: *store_test_results
996996
- store_artifacts: *artifacts_test_results
997997

998-
t_win_release:
999-
<<: *t_win
998+
t_win_release_soltest:
999+
<<: *t_win_soltest
10001000

10011001
b_bytecode_ubu:
10021002
<<: *base_ubuntu2004
@@ -1128,8 +1128,8 @@ workflows:
11281128
- chk_errorcodes: *workflow_trigger_on_tags
11291129
- chk_antlr_grammar: *workflow_trigger_on_tags
11301130
- chk_docs_pragma_min_version: *workflow_trigger_on_tags
1131-
- t_pyscripts_ubu: *workflow_trigger_on_tags
1132-
- t_pyscripts_win: *workflow_trigger_on_tags
1131+
- t_ubu_pyscripts: *workflow_trigger_on_tags
1132+
- t_win_pyscripts: *workflow_trigger_on_tags
11331133

11341134
# build-only
11351135
- b_docs: *workflow_trigger_on_tags
@@ -1151,15 +1151,15 @@ workflows:
11511151
# Ubuntu build and tests
11521152
- b_ubu: *workflow_trigger_on_tags
11531153
- t_ubu_cli: *workflow_ubuntu2004
1154-
- t_ubu_soltest: *workflow_ubuntu2004
1154+
- t_ubu_soltest_all: *workflow_ubuntu2004
11551155
- t_ubu_soltest_enforce_yul: *workflow_ubuntu2004
11561156
- b_ubu_clang: *workflow_trigger_on_tags
11571157
- t_ubu_clang_soltest: *workflow_ubuntu2004_clang
11581158

11591159
# Ubuntu fake release build and tests
11601160
- b_ubu_release: *workflow_trigger_on_tags
11611161
- t_ubu_release_cli: *workflow_ubuntu2004_release
1162-
- t_ubu_release_soltest: *workflow_ubuntu2004_release
1162+
- t_ubu_release_soltest_all: *workflow_ubuntu2004_release
11631163

11641164
# Emscripten build and tests that take 15 minutes or less
11651165
- b_ems: *workflow_trigger_on_tags
@@ -1222,8 +1222,8 @@ workflows:
12221222
# Windows build and tests
12231223
- b_win: *workflow_trigger_on_tags
12241224
- b_win_release: *workflow_trigger_on_tags
1225-
- t_win: *workflow_win
1226-
- t_win_release: *workflow_win_release
1225+
- t_win_soltest: *workflow_win
1226+
- t_win_release_soltest: *workflow_win_release
12271227

12281228
# Bytecode comparison:
12291229
- b_bytecode_ubu:
@@ -1267,13 +1267,13 @@ workflows:
12671267
# ASan build and tests
12681268
- b_ubu_asan: *workflow_trigger_on_tags
12691269
- b_ubu_asan_clang: *workflow_trigger_on_tags
1270-
- t_ubu_asan: *workflow_ubuntu2004_asan
1271-
- t_ubu_asan_clang: *workflow_ubuntu2004_asan_clang
1270+
- t_ubu_asan_soltest: *workflow_ubuntu2004_asan
1271+
- t_ubu_asan_clang_soltest: *workflow_ubuntu2004_asan_clang
12721272
- t_ubu_asan_cli: *workflow_ubuntu2004_asan
12731273

12741274
# UBSan build and tests
12751275
- b_ubu_ubsan_clang: *workflow_trigger_on_tags
1276-
- t_ubu_ubsan_clang: *workflow_ubuntu2004_ubsan_clang
1276+
- t_ubu_ubsan_clang_soltest: *workflow_ubuntu2004_ubsan_clang
12771277
- t_ubu_ubsan_clang_cli: *workflow_ubuntu2004_ubsan_clang
12781278

12791279
# Emscripten build and tests that take more than 15 minutes to execute

0 commit comments

Comments
 (0)