Skip to content

Commit cbb9688

Browse files
committed
Override the runner's stackhpc_cloud_tests_version so we can test our
SCT branch.
1 parent 3bd2369 commit cbb9688

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

etc/kayobe/ansible/stackhpc-cloud-tests.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
vars:
77
sct_venv: "{{ virtualenv_path }}/sct-venv"
88
sct_repo: https://github.com/stackhpc/stackhpc-cloud-tests
9-
# FIXME: Pin version for testing, remove before merge
10-
# Comment - trigger SCT workflow on push
11-
sct_version: "opensearch-dashboards-grafana"
9+
# Define the version of SCT used for testing, the github workflow overrides this with
10+
# stackhpc_cloud_tests_version so this is only used if running "locally".
11+
sct_version: "main"
12+
# TODO: REMOVE THIS
13+
sct_version_override: "docker-selinux"
1214
sct_timeout: 30
1315
results_path_local: "{{ lookup('env', 'HOME') }}/sct-results"
1416
tasks:
@@ -34,10 +36,10 @@
3436
- name: Clone the StackHPC Cloud tests repository
3537
ansible.builtin.git:
3638
repo: "{{ sct_repo }}"
37-
version: "{{ sct_version }}"
39+
version: "{{ sct_version_override }}"
3840
dest: "{{ repo_tmpdir.path }}"
39-
#depth: 1
40-
#single_branch: true
41+
depth: 1
42+
single_branch: true
4143

4244
- name: Ensure the latest versions of pip and setuptools are installed # noqa package-latest
4345
ansible.builtin.pip:

0 commit comments

Comments
 (0)