diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-01-19 10:39:46 -0800 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-01-19 10:39:46 -0800 |
commit | 9353c33abad9a486c67ea8bc82e06b37d3b36a92 (patch) | |
tree | b27ff6c5259e7cd983b55153d1fe1438cc75cd6b /playgrounds/aurora/fio.aurora | |
parent | [bash] go back to simple prompt. (diff) | |
download | emacs.d-9353c33abad9a486c67ea8bc82e06b37d3b36a92.tar.gz |
clean up.
Removed scripts and some configs, they will be in their own repo.
Diffstat (limited to '')
-rw-r--r-- | playgrounds/aurora/fio.aurora | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/playgrounds/aurora/fio.aurora b/playgrounds/aurora/fio.aurora deleted file mode 100644 index b26debf..0000000 --- a/playgrounds/aurora/fio.aurora +++ /dev/null @@ -1,45 +0,0 @@ -downloadFIO = Process( - name='download-fio', - cmdline='curl -o fio.rpm https://svn.twitter.biz/rpms/fio.x86_64/RPMS/x86_64/fio-1.50-2.twitter.x86_64.rpm' -) - -installBenchs = Packer.install( - 'fio-bench', - role = 'fcuny', - version = 'latest' -) - -mvFIO = Process( - name='move-fio', - cmdline='mv fio/* . && rm -rf fio', -) - -extractFIO = Process( - name='extract-fio', - cmdline='rpm2cpio fio.rpm | cpio -idmv' -) - -runFIO = Process( - name='run-fio', - cmdline='./runner.sh', -) - -jobs = [ - Job( - cluster='smf1', - role='fcuny', - environment='devel', - name='fio', - task=Task( - processes=[downloadFIO, extractFIO, runFIO, installBenchs, mvFIO], - resources=Resources(cpu=4, ram=4096 * MB, disk=10 * GB), - constraints=order(installBenchs, mvFIO, downloadFIO, extractFIO, runFIO) - ), - instances=3, - constraints={ - 'base_platform': 'f4ww', - 'dedicated': '*/manhattan', - 'host': 'limit:1', - } - ) -] |