Debug the gate job exit tasks

Change-Id: I7b05a9548ec92425e3c051d4843b1d6a718f7e47
This commit is contained in:
Logan V 2018-09-14 16:20:28 -06:00
parent b3c4917cc0
commit cd9fd66748
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,7 @@
removes: "{{ vault_key_path }}" removes: "{{ vault_key_path }}"
- name: Run the log collection script - name: Run the log collection script
shell: | shell: |
set -x
source scripts/scripts-library.sh source scripts/scripts-library.sh
gate_job_exit_tasks gate_job_exit_tasks
become: yes become: yes
@ -18,3 +19,6 @@
environment: environment:
GATE_EXIT_LOG_COPY: true GATE_EXIT_LOG_COPY: true
GATE_LOG_DIR: "{{ lsn_ci_src_path }}/logs" GATE_LOG_DIR: "{{ lsn_ci_src_path }}/logs"
register: test_gate_job_exit
- debug:
msg: "{{ test_gate_job_exit.stdout }}"