Skip to content

Commit

Permalink
Update runtest.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
litong01 authored Jan 30, 2020
1 parent 4fbafb8 commit 0b6e423
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion backend/jenkins/pipelines/ansible/runtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,15 @@
- name: Add literal/stringPattern parameters to complex_params_string
set_fact:
complex_params_string: "{{ complex_params_string + paramItem.type + '~~~' + paramItem.value + '#' }}"
when: paramItem.min is not defined
when: paramItem.min is not defined and paramItem.type != 'uuid'
loop: "{{ complex_params }}"
loop_control:
loop_var: paramItem

- name: Add uuid parameters to complex_params_string
set_fact:
complex_params_string: "{{ complex_params_string + paramItem.type + '#' }}"
when: paramItem.type == 'uuid'
loop: "{{ complex_params }}"
loop_control:
loop_var: paramItem
Expand Down

0 comments on commit 0b6e423

Please sign in to comment.