-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build process to build Caddy from source (closes #132)
- Loading branch information
1 parent
97f6cc4
commit 092f4c8
Showing
22 changed files
with
304 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
snowplow-mini-control-plane-api |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Go | ||
======== | ||
|
||
Ansible role that installs [Go](https://golang.org/). The latest stable release that has been compiled for x86 64-bit Linux systems is installed by default, and different platforms and versions are supported by modifying the role variables. | ||
|
||
Role Variables | ||
-------------- | ||
|
||
All of these variables are optional and should only be changed if you need to install a different version of Go (e.g. if you are installing on FreeBSD, or if you need to use an earlier release). | ||
|
||
`go_tarball`: The tarball that you want to install. A list of options can be found on the [Go Downloads page](https://golang.org/dl/). The default is the official x86 64-bit Linux tarball for the latest stable release. | ||
|
||
`go_tarball_checksum`: This variable specifies the algorithm and checksum for the tarball that you want to install (e.g. `sha1:c7d78ba4df574b5f9a9bb5d17505f40c4d89b81c` or `sha256:a96cce8ce43a9bf9b2a4c7d470bc7ee0cb00410da815980681c8353218dcf146`). The default is the SHA256 checksum of the official x86 64-bit tarball for the latest stable release. Checksums can be found on the [Go Download Page](https://golang.org/dl/). | ||
|
||
`go_version_target`: The string that the `go version` command is expected to return (e.g. "go version go1.2.1 linux/amd64"). This variable is used to control whether or not the Go tarball should be extracted, thereby upgrading (or downgrading) a previously installed copy. If the installed version already matches the target, the extraction step is skipped. | ||
|
||
`go_download_location`: The full download URL. This variable simply appends the `go_tarball` variable onto the Go Download URL. This should not need to be modified. | ||
|
||
`set_go_path`: Whether or not to set the GOPATH for all users. The default is `true`. | ||
|
||
License | ||
------- | ||
|
||
The MIT License (MIT) | ||
|
||
Copyright (c) 2013-2016 Joshua Lund | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
|
||
Author Information | ||
------------------ | ||
|
||
You can find me on [Twitter](https://twitter.com/joshualund), and on [GitHub](https://github.com/jlund/). I also occasionally blog at [MissingM](https://missingm.co). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
go_tarball: "go1.8.1.linux-amd64.tar.gz" | ||
go_tarball_checksum: "sha256:a579ab19d5237e263254f1eac5352efcf1d70b9dacadb6d6bb12b0911ede8994" | ||
go_version_target: "go version go1.8.1 linux/amd64" | ||
set_go_path: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export PATH=$PATH:/usr/local/go/bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
export GOPATH=$HOME/go | ||
export PATH=$GOPATH/bin:$PATH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
galaxy_info: | ||
author: "Joshua Lund" | ||
description: "Ansible role that installs Go (https://golang.org/). The latest stable release that has been compiled for x86 64-bit Linux systems is installed by default, and different platforms and versions are supported by modifying the role variables." | ||
license: MIT | ||
min_ansible_version: 2.0 | ||
platforms: | ||
- name: EL | ||
versions: | ||
- all | ||
- name: GenericUNIX | ||
versions: | ||
- all | ||
- name: Fedora | ||
versions: | ||
- all | ||
- name: opensuse | ||
versions: | ||
- all | ||
- name: GenericBSD | ||
versions: | ||
- all | ||
- name: FreeBSD | ||
versions: | ||
- all | ||
- name: Ubuntu | ||
versions: | ||
- all | ||
- name: SLES | ||
versions: | ||
- all | ||
- name: GenericLinux | ||
versions: | ||
- all | ||
- name: Debian | ||
versions: | ||
- all | ||
categories: | ||
- development | ||
dependencies: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
- name: Download the Go tarball | ||
become: yes | ||
get_url: | ||
url: "{{ go_download_location }}" | ||
dest: /usr/local/src/{{ go_tarball }} | ||
checksum: "{{ go_tarball_checksum }}" | ||
|
||
- name: Register the current Go version (if any) | ||
become: yes | ||
command: /usr/local/go/bin/go version | ||
ignore_errors: yes | ||
register: go_version | ||
changed_when: false | ||
|
||
- name: Remove old installation of Go | ||
become: yes | ||
file: | ||
path: /usr/local/go | ||
state: absent | ||
when: go_version|failed or go_version.stdout != go_version_target | ||
|
||
- name: Extract the Go tarball if Go is not yet installed or not the desired version | ||
become: yes | ||
unarchive: | ||
src: /usr/local/src/{{ go_tarball }} | ||
dest: /usr/local | ||
copy: no | ||
when: go_version|failed or go_version.stdout != go_version_target | ||
|
||
- name: Add the Go bin directory to the PATH environment variable for all users | ||
become: yes | ||
copy: | ||
src: go-bin.sh | ||
dest: /etc/profile.d | ||
|
||
- name: Set GOPATH for all users | ||
become: yes | ||
copy: | ||
src: go-path.sh | ||
dest: /etc/profile.d | ||
when: set_go_path |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
go_download_location: "https://storage.googleapis.com/golang/{{ go_tarball }}" |
68 changes: 68 additions & 0 deletions
68
provisioning/roles/sp_mini_3_build_go_projects/tasks/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
- include_vars: ../../common_vars.yml | ||
|
||
- name: Set variables | ||
set_fact: | ||
control_plane_dir: '{{playbook_dir}}/resources/control-plane' | ||
go_bin: '/usr/local/go/bin' | ||
go_path: "{{ lookup('env', 'HOME') }}/go" | ||
|
||
- name: Install Git | ||
become: yes | ||
apt: | ||
name: git | ||
state: present | ||
update_cache: yes | ||
cache_valid_time: 3600 | ||
|
||
- name: Get toml parser library for Golang | ||
environment: | ||
PATH: "{{ lookup('env','PATH') }}:{{ go_bin }}" | ||
GOPATH: "{{ go_path }}" | ||
shell: "go get github.com/BurntSushi/toml" | ||
|
||
- name: Get psql drive for Golang | ||
environment: | ||
PATH: "{{ lookup('env','PATH') }}:{{ go_bin }}" | ||
GOPATH: "{{ go_path }}" | ||
shell: "go get gopkg.in/pg.v5" | ||
|
||
- name: Build Control Plane API | ||
become: yes | ||
environment: | ||
PATH: "{{ lookup('env','PATH') }}:{{ go_bin }}" | ||
GOPATH: "{{ go_path }}" | ||
shell: "go build -o {{control_plane_dir}}/snowplow-mini-control-plane-api {{control_plane_dir}}/*.go" | ||
|
||
- name: Copy Control API to executables dir | ||
become: yes | ||
synchronize: | ||
src: "{{control_plane_dir}}/snowplow-mini-control-plane-api" | ||
dest: "{{executables_dir}}" | ||
|
||
- name: Get Caddy source code | ||
environment: | ||
PATH: "{{ lookup('env','PATH') }}:{{ go_bin }}" | ||
GOPATH: "{{ go_path }}" | ||
shell: "go get -u github.com/mholt/caddy" | ||
|
||
- name: Get Caddyserver builds | ||
environment: | ||
PATH: "{{ lookup('env','PATH') }}:{{ go_bin }}" | ||
GOPATH: "{{ go_path }}" | ||
shell: "go get -u github.com/caddyserver/builds" | ||
|
||
- name: Build Caddy | ||
environment: | ||
PATH: "{{ lookup('env','PATH') }}:{{ go_bin }}" | ||
GOPATH: "{{ go_path }}" | ||
shell: "cd $GOPATH/src/github.com/mholt/caddy/caddy; go run build.go -goos=linux -goarch=amd64" | ||
|
||
- name: Copy Caddy executable to executables dir | ||
become: yes | ||
environment: | ||
PATH: "{{ lookup('env','PATH') }}:{{ go_bin }}" | ||
GOPATH: "{{ go_path }}" | ||
synchronize: | ||
src: "/$GOPATH/src/github.com/mholt/caddy/caddy/caddy" | ||
dest: "{{executables_dir}}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.