plugeth/tests/files/ansible/roles/testrunner/tasks/main.yml

35 lines
946 B
YAML
Raw Normal View History

2015-01-21 23:37:58 +00:00
---
- name: update C++ client
docker_image:
2015-02-03 03:55:38 +00:00
path: /home/{{ ansible_ssh_user }}/git/ansible/test-files/docker-cppjit
2015-03-02 15:34:03 +00:00
name: ethereum/cppjit-testrunner
2015-01-21 23:37:58 +00:00
state: build
2015-02-03 03:55:38 +00:00
async: 1200
poll: 5
2015-01-21 23:37:58 +00:00
- name: update Go client
docker_image:
2015-02-03 03:55:38 +00:00
path: /home/{{ ansible_ssh_user }}/git/ansible/test-files/docker-go
2015-03-02 15:34:03 +00:00
name: ethereum/go-testrunner
2015-01-21 23:37:58 +00:00
state: build
2015-02-03 03:55:38 +00:00
async: 1200
poll: 5
2015-01-21 23:37:58 +00:00
2015-02-03 03:55:38 +00:00
- name: update Python client
docker_image:
path: /home/{{ ansible_ssh_user }}/git/ansible/test-files/docker-python
2015-03-02 15:34:03 +00:00
name: ethereum/python-testrunner
2015-02-03 03:55:38 +00:00
state: build
async: 1200
poll: 5
- name: Run infinite tests
shell: seq {{ ansible_processor_vcpus }} | parallel --max-args=0 /home/{{ ansible_ssh_user }}/git/ansible/test-files/testrunner.sh
# run for two months
async: "{{ 60 * 60 * 24 * 30 * 2 }}"
poll: 0
register: log_runner
- name: verify previous task
async_status: jid={{ log_runner.ansible_job_id }}