Skip to content

Commit e234980

Browse files
author
Matt Pryor
committed
Skip HPL tests by default
1 parent 8cd02d5 commit e234980

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

ansible.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ retries = 10
1919
# Temporarily, the grafana_install tag is skipped and we install Grafana manually
2020
# https://github.com/grafana/grafana/issues/36935
2121
# TODO: REMOVE THIS
22-
skip = grafana_install
22+
# By default, we also skip the HPL tests
23+
skip = grafana_install,hpl-solo,hpl-all

group_vars/cluster.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,3 @@ secrets_openhpc_mungekey: "{{ hostvars[groups['control'][0]].ansible_local.openh
1111

1212
# Override this to cope with the case where the podman group just doesn't exist
1313
appliances_local_users_podman_enable: "{{ groups.get('podman', []) | length > 0 }}"
14-
15-
# Use the short hostname as the default internal address
16-
internal_address: "{{ ansible_hostname }}"

slurm-infra.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@
5454
loop: "{{ groups.get('cluster', []) }}"
5555
when: cluster_run_validation | default(false) | bool
5656

57-
# Ensure that the hosts in the cluster can all refer to each other by their inventory hostname
57+
# Ensure that the hosts in the cluster can all refer to each other by their hostname
5858
- hosts: cluster
5959
become: yes
6060
tasks:
6161
- name: Populate /etc/hosts with cluster hosts
6262
lineinfile:
6363
path: /etc/hosts
64-
regexp: "{{ hostvars[host].ansible_hostname }}"
65-
line: "{{ hostvars[host].ansible_default_ipv4.address }} {{ hostvars[host].ansible_fqdn }} {{ hostvars[host].ansible_hostname }}"
64+
regexp: "{{ hostvars[host].inventory_hostname }}"
65+
line: "{{ hostvars[host].ansible_default_ipv4.address }} {{ hostvars[host].inventory_hostname }}"
6666
loop: "{{ ansible_play_hosts }}"
6767
loop_control:
6868
loop_var: host

0 commit comments

Comments
 (0)