Skip to content

Instantly share code, notes, and snippets.

@smalleni
Created November 4, 2015 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smalleni/7f8cd99d5eeca52d3556 to your computer and use it in GitHub Desktop.
Save smalleni/7f8cd99d5eeca52d3556 to your computer and use it in GitHub Desktop.
- hosts: 127.0.0.1
connection: local
tasks:
- name: making dhrystone directory
file: path={{Dest_dir}}/dhrystone/dhrystone_temp state=directory
- name: making temporary dhrystone directory
file: path={{Dest_dir}}/dhrystone/dhrystone_temp state=directory
- hosts: "{{ role }}"
tasks:
- name: checking linux distribution
shell: cat /etc/*-release | grep -c "CentOS"
register: centos_count
- name: checking_home directory
shell: echo $HOME
register: home_dir
- name: cleaning tempT
shell: rm -rf $HOME/tempT
- name: cleaning_qtip_result
shell: rm -rf $HOME/qtip_result
- name: make directory
shell: mkdir $HOME/qtip_result
- include: ./sys_info_pbook.yaml
- name: Clone unixbench
shell: git clone https://github.com/kdlucas/byte-unixbench.git $HOME/tempT
- name: make
shell: make --directory $HOME/tempT/UnixBench/
- name: downloading_patch
shell: cd $HOME/tempT/UnixBench/ && wget https://www.dropbox.com/s/11z85gfu0trkhus/fix-limitation.patch
- name: applying_patch
shell: cd $HOME/tempT/UnixBench/ && patch Run fix-limitation.patch
- name: Run dhrystone
shell: cd $HOME/tempT/UnixBench/&&./Run -v dhrystone
- name: collecting and transforming result script copy
copy: src=./result_transform/ubench_transform.py dest={{home_dir.stdout}}/qtip_result/
- name: transforming result
shell: python $HOME/qtip_result/ubench_transform.py
- name: copying consolidated report script
copy: src=./result_transform/final_report.py dest={{home_dir.stdout}}/qtip_result/
- name: making consolidated report
shell: python $HOME/qtip_result/final_report.py Dhrystone
- name: making directory
file: path={{home_dir.stdout}}/qtip_result/log state=directory
- name: copying result to temp directory
shell: cp -r $HOME/tempT/UnixBench/results/* $HOME/qtip_result/log/
- name: registering files
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}}/dhrystone/dhrystone_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}}/dhrystone/dhrystone_temp
with_items: copy_log_results.stdout_lines
- name: cleaning tempT
shell: rm -rf $HOME/tempT
- name: cleaning_qtip_result
shell: rm -rf $HOME/qtip_result
- hosts: 127.0.0.1
connection: local
tasks:
- name: extracting_json
shell: ( find {{Dest_dir}}/dhrystone/dhrystone_temp/ -name "*.json" | xargs cp -t {{Dest_dir}}/dhrystone/)
- name: making_logs_folder
shell: mkdir -p {{Dest_dir}}/dhrystone/logs
- name: extracting_log
shell: ( find {{Dest_dir}}/dhrystone/dhrystone_temp/ -name "*.log" | xargs cp -t {{Dest_dir}}/dhrystone/logs)
- name: removing dhrystone_temp
shell: rm -rf {{Dest_dir}}/dhrystone/dhrystone_temp
# - name: cleaning_2
# file: path=/root/tempT state=absent
# file: path=/root/qtip_result state=absent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment