Skip to content

Commit 21b7fbb

Browse files
committed
update names
1 parent 718d9df commit 21b7fbb

File tree

2 files changed

+17
-15
lines changed

2 files changed

+17
-15
lines changed

.evergreen/generated_configs/variants.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,61 +1,61 @@
11
buildvariants:
22
# Alternative hosts tests
3-
- name: openssl-1.0.2-rhel7-python3.9
3+
- name: openssl-1.0.2-rhel7-v5.0-python3.9
44
tasks:
55
- name: .other-hosts
6-
display_name: OpenSSL 1.0.2 RHEL7 Python3.9
6+
display_name: OpenSSL 1.0.2 RHEL7 v5.0 Python3.9
77
run_on:
88
- rhel79-small
99
batchtime: 10080
1010
expansions:
1111
VERSION: "5.0"
1212
PYTHON_VERSION: "3.9"
1313
PYTHON_BINARY: /opt/python/3.9/bin/python3
14-
- name: other-hosts-rhel9-fips
14+
- name: other-hosts-rhel9-fips-latest
1515
tasks:
1616
- name: .other-hosts
17-
display_name: Other hosts RHEL9-FIPS
17+
display_name: Other hosts RHEL9-FIPS latest
1818
run_on:
1919
- rhel92-fips
2020
batchtime: 10080
2121
expansions:
2222
VERSION: latest
2323
NO_EXT: "1"
2424
REQUIRE_FIPS: "1"
25-
- name: other-hosts-rhel8-zseries
25+
- name: other-hosts-rhel8-zseries-latest
2626
tasks:
2727
- name: .other-hosts
28-
display_name: Other hosts RHEL8-zseries
28+
display_name: Other hosts RHEL8-zseries latest
2929
run_on:
3030
- rhel8-zseries-small
3131
batchtime: 10080
3232
expansions:
3333
VERSION: latest
3434
NO_EXT: "1"
35-
- name: other-hosts-rhel8-power8
35+
- name: other-hosts-rhel8-power8-latest
3636
tasks:
3737
- name: .other-hosts
38-
display_name: Other hosts RHEL8-POWER8
38+
display_name: Other hosts RHEL8-POWER8 latest
3939
run_on:
4040
- rhel8-power-small
4141
batchtime: 10080
4242
expansions:
4343
VERSION: latest
4444
NO_EXT: "1"
45-
- name: other-hosts-rhel8-arm64
45+
- name: other-hosts-rhel8-arm64-latest
4646
tasks:
4747
- name: .other-hosts
48-
display_name: Other hosts RHEL8-arm64
48+
display_name: Other hosts RHEL8-arm64 latest
4949
run_on:
5050
- rhel82-arm64-small
5151
batchtime: 10080
5252
expansions:
5353
VERSION: latest
5454
NO_EXT: "1"
55-
- name: other-hosts-amazon2023
55+
- name: other-hosts-amazon2023-latest
5656
tasks:
5757
- name: .other-hosts
58-
display_name: Other hosts Amazon2023
58+
display_name: Other hosts Amazon2023 latest
5959
run_on:
6060
- amazon2023-arm64-latest-large-m8g
6161
batchtime: 10080

.evergreen/scripts/generate_config.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -549,17 +549,19 @@ def create_alternative_hosts_variants():
549549
variants = []
550550

551551
host = HOSTS["rhel7"]
552+
version = "5.0"
552553
variants.append(
553554
create_variant(
554555
[".other-hosts"],
555-
get_variant_name("OpenSSL 1.0.2", host, python=CPYTHONS[0]),
556+
get_variant_name("OpenSSL 1.0.2", host, python=CPYTHONS[0], version=version),
556557
host=host,
557558
python=CPYTHONS[0],
558559
batchtime=batchtime,
559-
expansions=dict(VERSION="5.0", PYTHON_VERSION=CPYTHONS[0]),
560+
expansions=dict(VERSION=version, PYTHON_VERSION=CPYTHONS[0]),
560561
)
561562
)
562563

564+
version = "latest"
563565
for host_name in OTHER_HOSTS:
564566
expansions = dict(VERSION="latest")
565567
handle_c_ext(C_EXTS[0], expansions)
@@ -569,7 +571,7 @@ def create_alternative_hosts_variants():
569571
variants.append(
570572
create_variant(
571573
[".other-hosts"],
572-
display_name=get_variant_name("Other hosts", host),
574+
display_name=get_variant_name("Other hosts", host, version=version),
573575
batchtime=batchtime,
574576
host=host,
575577
expansions=expansions,

0 commit comments

Comments
 (0)