Try adding CI tests

f38
Parag Nemade 6 years ago
parent 4880c9dfc7
commit 8f02ea22bc
No known key found for this signature in database
GPG Key ID: 71932951EB71E972

@ -0,0 +1,2 @@
#/usr/bin/bash
rpm -q --provides google-croscore-fonts

@ -0,0 +1,25 @@
- hosts: localhost
roles:
- role: standard-test-basic
tags:
- classic
remote_user: root
tasks:
- name: Install the test files
copy: src={{ item.file }} dest=/usr/local/bin/{{ item.dest }} mode=0755
with_items:
- {file: test-simple, dest: test-simple }
- name: Test block
block:
- name: Execute the tests
shell: exec > /tmp/test.log 2>&1 && /usr/local/bin/test-simple
always:
- name: Pull out the logs
fetch:
dest: "{{ artifacts }}/"
src: "/tmp/test.log"
flat: yes
required_packages:
- google-croscore-fonts

@ -0,0 +1 @@
- import_playbook: test_simple.yml
Loading…
Cancel
Save