Skip to content

Commit e3d79ea

Browse files
committed
CI: Tweak some job names to better reflect what they run
1 parent ede4b2c commit e3d79ea

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.circleci/config.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -486,15 +486,15 @@ jobs:
486486
- checkout
487487
- run: *run_docs_pragma_min_version
488488

489-
t_pyscripts_ubu:
489+
t_ubu_pyscripts:
490490
<<: *base_ubuntu2004
491491
steps:
492492
- checkout
493493
- run:
494494
name: Python unit tests
495495
command: python3 test/pyscriptTests.py
496496

497-
t_pyscripts_win:
497+
t_win_pyscripts:
498498
<<: *base_win_powershell
499499
steps:
500500
- run: git config --global core.autocrlf false
@@ -760,7 +760,7 @@ jobs:
760760
path: docs/_build/html/
761761
destination: docs-html
762762

763-
t_ubu_soltest: &t_ubu_soltest
763+
t_ubu_soltest_all: &t_ubu_soltest_all
764764
<<: *base_ubuntu2004
765765
parallelism: 6
766766
<<: *steps_soltest_all
@@ -799,10 +799,10 @@ jobs:
799799
OPTIMIZE: 0
800800
<<: *steps_soltest
801801

802-
t_ubu_release_soltest: &t_ubu_release_soltest
802+
t_ubu_release_soltest_all: &t_ubu_release_soltest_all
803803
# NOTE: This definition is identical to t_ubu_soltest_all but in the workflow we make it depend on
804804
# a different job (b_ubu_release) so the workspace it attaches contains a different executable.
805-
<<: *t_ubu_soltest
805+
<<: *t_ubu_soltest_all
806806

807807
t_ubu_cli: &t_ubu_cli
808808
<<: *base_ubuntu2004
@@ -818,7 +818,7 @@ jobs:
818818
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
819819
<<: *steps_cmdline_tests
820820

821-
t_ubu_asan:
821+
t_ubu_asan_soltest:
822822
<<: *base_ubuntu2004
823823
parallelism: 6
824824
environment:
@@ -828,7 +828,7 @@ jobs:
828828
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
829829
<<: *steps_soltest
830830

831-
t_ubu_asan_clang:
831+
t_ubu_asan_clang_soltest:
832832
<<: *base_ubuntu2004_clang
833833
environment:
834834
EVM: << pipeline.parameters.evm-version >>
@@ -837,7 +837,7 @@ jobs:
837837
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
838838
<<: *steps_soltest
839839

840-
t_ubu_ubsan_clang:
840+
t_ubu_ubsan_clang_soltest:
841841
<<: *base_ubuntu2004_clang
842842
environment:
843843
EVM: << pipeline.parameters.evm-version >>
@@ -946,7 +946,7 @@ jobs:
946946
environment:
947947
FORCE_RELEASE: ON
948948

949-
t_win: &t_win
949+
t_win_soltest: &t_win_soltest
950950
<<: *base_win_powershell
951951
steps:
952952
# NOTE: Git's default core.autocrlf is fine for running soltest. We get additional coverage
@@ -963,8 +963,8 @@ jobs:
963963
- store_test_results: *store_test_results
964964
- store_artifacts: *artifacts_test_results
965965

966-
t_win_release:
967-
<<: *t_win
966+
t_win_release_soltest:
967+
<<: *t_win_soltest
968968

969969
b_bytecode_ubu:
970970
<<: *base_ubuntu2004
@@ -1096,8 +1096,8 @@ workflows:
10961096
- chk_errorcodes: *workflow_trigger_on_tags
10971097
- chk_antlr_grammar: *workflow_trigger_on_tags
10981098
- chk_docs_pragma_min_version: *workflow_trigger_on_tags
1099-
- t_pyscripts_ubu: *workflow_trigger_on_tags
1100-
- t_pyscripts_win: *workflow_trigger_on_tags
1099+
- t_ubu_pyscripts: *workflow_trigger_on_tags
1100+
- t_win_pyscripts: *workflow_trigger_on_tags
11011101

11021102
# build-only
11031103
- b_docs: *workflow_trigger_on_tags
@@ -1119,15 +1119,15 @@ workflows:
11191119
# Ubuntu build and tests
11201120
- b_ubu: *workflow_trigger_on_tags
11211121
- t_ubu_cli: *workflow_ubuntu2004
1122-
- t_ubu_soltest: *workflow_ubuntu2004
1122+
- t_ubu_soltest_all: *workflow_ubuntu2004
11231123
- t_ubu_soltest_enforce_yul: *workflow_ubuntu2004
11241124
- b_ubu_clang: *workflow_trigger_on_tags
11251125
- t_ubu_clang_soltest: *workflow_ubuntu2004_clang
11261126

11271127
# Ubuntu fake release build and tests
11281128
- b_ubu_release: *workflow_trigger_on_tags
11291129
- t_ubu_release_cli: *workflow_ubuntu2004_release
1130-
- t_ubu_release_soltest: *workflow_ubuntu2004_release
1130+
- t_ubu_release_soltest_all: *workflow_ubuntu2004_release
11311131

11321132
# Emscripten build and tests that take 15 minutes or less
11331133
- b_ems: *workflow_trigger_on_tags
@@ -1189,8 +1189,8 @@ workflows:
11891189
# Windows build and tests
11901190
- b_win: *workflow_trigger_on_tags
11911191
- b_win_release: *workflow_trigger_on_tags
1192-
- t_win: *workflow_win
1193-
- t_win_release: *workflow_win_release
1192+
- t_win_soltest: *workflow_win
1193+
- t_win_release_soltest: *workflow_win_release
11941194

11951195
# Bytecode comparison:
11961196
- b_bytecode_ubu:
@@ -1234,13 +1234,13 @@ workflows:
12341234
# ASan build and tests
12351235
- b_ubu_asan: *workflow_trigger_on_tags
12361236
- b_ubu_asan_clang: *workflow_trigger_on_tags
1237-
- t_ubu_asan: *workflow_ubuntu2004_asan
1238-
- t_ubu_asan_clang: *workflow_ubuntu2004_asan_clang
1237+
- t_ubu_asan_soltest: *workflow_ubuntu2004_asan
1238+
- t_ubu_asan_clang_soltest: *workflow_ubuntu2004_asan_clang
12391239
- t_ubu_asan_cli: *workflow_ubuntu2004_asan
12401240

12411241
# UBSan build and tests
12421242
- b_ubu_ubsan_clang: *workflow_trigger_on_tags
1243-
- t_ubu_ubsan_clang: *workflow_ubuntu2004_ubsan_clang
1243+
- t_ubu_ubsan_clang_soltest: *workflow_ubuntu2004_ubsan_clang
12441244
- t_ubu_ubsan_clang_cli: *workflow_ubuntu2004_ubsan_clang
12451245

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

0 commit comments

Comments
 (0)