Instead of using docker to build, lint, and unit tests we can instead use go directly using Zuul. Change-Id: I4c22c4f977c94437717da73f52e9665b4e86040d
11 lines
219 B
YAML
11 lines
219 B
YAML
---
|
|
- hosts: all
|
|
name: Run tests
|
|
tasks:
|
|
- name: make test
|
|
make:
|
|
target: test
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
environment:
|
|
PATH: "{{ ansible_env.PATH }}:/usr/local/go/bin"
|