aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/playbooks/whetstone.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/playbooks/whetstone.yaml')
-rw-r--r--benchmarks/playbooks/whetstone.yaml24
1 files changed, 12 insertions, 12 deletions
diff --git a/benchmarks/playbooks/whetstone.yaml b/benchmarks/playbooks/whetstone.yaml
index bcbccf3e..599b98f3 100644
--- a/benchmarks/playbooks/whetstone.yaml
+++ b/benchmarks/playbooks/whetstone.yaml
@@ -2,10 +2,10 @@
connection: local
tasks:
- name: making whetstone directory
- file: path=../../{{Dest_dir}}/whetstone state=directory
+ file: path={{workingdir}}/{{Dest_dir}}/whetstone state=directory
- name: making temporary whetstone directory
- file: path=../../{{Dest_dir}}/whetstone/whetstone_temp state=directory
-
+ file: path={{workingdir}}/{{Dest_dir}}/whetstone/whetstone_temp state=directory
+
- hosts: "{{role}}"
tasks:
@@ -45,7 +45,7 @@
- name: copying consolidated report script
copy: src=./result_transform/final_report.py dest={{home_dir.stdout}}/qtip_result/
- name: making consolidated report
- shell: cd $HOME/qtip_result && python final_report.py Whetstone
+ shell: cd $HOME/qtip_result && python final_report.py Whetstone
- name: making directory
file: path={{home_dir.stdout}}/qtip_result/log state=directory
- name: copying result to temp directory
@@ -54,13 +54,13 @@
shell: (cd $HOME/qtip_result/; find . -maxdepth 1 -name "*.json") | cut -d'/' -f2
register: files_to_copy
- name: copy results
- fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest=../../{{Dest_dir}}/whetstone/whetstone_temp
- with_items: files_to_copy.stdout_lines
+ fetch: src={{home_dir.stdout}}/qtip_result/{{item}} dest={{workingdir}}/{{Dest_dir}}/whetstone/whetstone_temp
+ with_items: files_to_copy.stdout_lines
- name: registering log files
shell: (cd $HOME/qtip_result/log/; find . -maxdepth 1 -name "*.log") | cut -d'/' -f2
register: copy_log_results
- name: copying log results
- fetch: src={{home_dir.stdout}}/qtip_result/log/{{item}} dest=../../{{Dest_dir}}/whetstone/whetstone_temp
+ fetch: src={{home_dir.stdout}}/qtip_result/log/{{item}} dest={{workingdir}}/{{Dest_dir}}/whetstone/whetstone_temp
with_items: copy_log_results.stdout_lines
- name: cleaning tempT
shell: rm -rf $HOME/tempT
@@ -72,10 +72,10 @@
connection: local
tasks:
- name: extracting_json
- shell: (find ../../{{Dest_dir}}/whetstone/whetstone_temp/ -name "*.json" | xargs cp -t ../../{{Dest_dir}}/whetstone/)
+ shell: ( find {{workingdir}}/{{Dest_dir}}/whetstone/whetstone_temp/ -name "*.json" | xargs cp -t {{workingdir}}/{{Dest_dir}}/whetstone/)
- name: making_logs_folder
- shell: mkdir -p ../../{{Dest_dir}}/whetstone/logs
+ shell: mkdir -p {{workingdir}}/{{Dest_dir}}/whetstone/logs
- name: extracting_log
- shell: (find ../../{{Dest_dir}}/whetstone/whetstone_temp/ -name "*.log" | xargs cp -t ../../{{Dest_dir}}/whetstone/logs)
- - name: removing whetstone_temp
- shell: rm -rf ../../{{Dest_dir}}/whetstone/whetstone_temp
+ shell: ( find {{workingdir}}/{{Dest_dir}}/whetstone/whetstone_temp/ -name "*.log" | xargs cp -t {{workingdir}}/{{Dest_dir}}/whetstone/logs)
+ - name: removing whetstone_temp
+ shell: rm -rf {{workingdir}}/{{Dest_dir}}/whetstone/whetstone_temp