You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
530 B

# ansible!
- hosts: all
environment:
GOPATH=/root
tasks:
- debug:
msg: Building Blubber.
- name: Install build and test dependencies
apt:
name: "{{ packages }}"
update_cache: yes
vars:
packages:
- golang
- golint
- build-essential
- tree
- git
- name: Run tree and output
# command: ls -lah src
command: tree src
register: out
- debug: var=out.stdout_lines
- make:
chdir: src/gerrit/blubber