summaryrefslogtreecommitdiff
path: root/contrib/test/integration/golang.yml
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2017-11-01 13:22:04 -0400
committerMatthew Heon <matthew.heon@gmail.com>2017-11-01 13:22:04 -0400
commitc13f61798aa7bcf7b4de7ee31aa30148a3b08d97 (patch)
tree6f0c3297f91ecbe259d8dc5ff1b0ab3d63e44744 /contrib/test/integration/golang.yml
parent92b31c0ff7c75fab3b875fb6b10c14f8e2c031e7 (diff)
downloadpodman-c13f61798aa7bcf7b4de7ee31aa30148a3b08d97.tar.gz
podman-c13f61798aa7bcf7b4de7ee31aa30148a3b08d97.tar.bz2
podman-c13f61798aa7bcf7b4de7ee31aa30148a3b08d97.zip
Prune Server package. Convert to new github location.
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Diffstat (limited to 'contrib/test/integration/golang.yml')
-rw-r--r--contrib/test/integration/golang.yml51
1 files changed, 0 insertions, 51 deletions
diff --git a/contrib/test/integration/golang.yml b/contrib/test/integration/golang.yml
deleted file mode 100644
index 63e556977..000000000
--- a/contrib/test/integration/golang.yml
+++ /dev/null
@@ -1,51 +0,0 @@
----
-
-- name: fetch Golang
- unarchive:
- remote_src: yes
- src: https://storage.googleapis.com/golang/go1.8.4.linux-amd64.tar.gz
- dest: /usr/local
-
-- name: link go toolchain
- file:
- src: "/usr/local/go/bin/{{ item }}"
- dest: "/usr/bin/{{ item }}"
- state: link
- with_items:
- - go
- - gofmt
- - godoc
-
-- name: ensure user profile exists
- file:
- path: "{{ ansible_user_dir }}/.profile"
- state: touch
-
-- name: set up PATH for Go toolchain and built binaries
- lineinfile:
- dest: "{{ ansible_user_dir }}/.profile"
- line: 'PATH={{ ansible_env.PATH }}:{{ ansible_env.GOPATH }}/bin:/usr/local/go/bin'
- regexp: '^PATH='
- state: present
-
-- name: set up directories
- file:
- path: "{{ item }}"
- state: directory
- with_items:
- - "{{ ansible_env.GOPATH }}/src/github.com/containernetworking"
- - "{{ ansible_env.GOPATH }}/src/github.com/kubernetes-incubator"
- - "{{ ansible_env.GOPATH }}/src/github.com/k8s.io"
- - "{{ ansible_env.GOPATH }}/src/github.com/sstephenson"
- - "{{ ansible_env.GOPATH }}/src/github.com/opencontainers"
-
-- name: install Go tools and dependencies
- shell: /usr/bin/go get -u "github.com/{{ item }}"
- with_items:
- - tools/godep
- - onsi/ginkgo/ginkgo
- - onsi/gomega
- - cloudflare/cfssl/cmd/...
- - jteeuwen/go-bindata/go-bindata
- - vbatts/git-validation
- - cpuguy83/go-md2man