-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This also updates the OS X cross compiler used in pacakging to use the 10.11 SDK. Credit for figuring out what's needed goes to the upstream project github.com/karalabe/xgo.
- Loading branch information
Tudor Golubenco
committed
Aug 18, 2016
1 parent
2070dfe
commit 968e4a1
Showing
19 changed files
with
37 additions
and
32 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.6.2 | ||
FROM golang:1.7 | ||
MAINTAINER Nicolas Ruflin <[email protected]> | ||
|
||
RUN set -x && \ | ||
|
2 changes: 1 addition & 1 deletion
2
dev-tools/packer/docker/xgo-image-deb6/beats-builder/Dockerfile
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM tudorg/xgo-deb6-1.6 | ||
FROM tudorg/xgo-deb6-1.7 | ||
|
||
MAINTAINER Tudor Golubenco <[email protected]> | ||
|
||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
|
||
docker build --rm=true -t tudorg/xgo-deb6-base base/ && \ | ||
docker build --rm=true -t tudorg/xgo-deb6-1.6 go-1.6/ && | ||
docker build --rm=true -t tudorg/xgo-deb6-1.7 go-1.7/ && | ||
docker build --rm=true -t tudorg/beats-builder-deb6 beats-builder |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Go cross compiler (xgo): Go 1.6 layer | ||
# Go cross compiler (xgo): Go 1.7 layer | ||
# Copyright (c) 2014 Péter Szilágyi. All rights reserved. | ||
# | ||
# Released under the MIT license. | ||
|
@@ -9,7 +9,7 @@ MAINTAINER Tudor Golubenco <[email protected]> | |
|
||
# Configure the root Go distribution and bootstrap based on it | ||
RUN \ | ||
export ROOT_DIST="https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz" && \ | ||
export ROOT_DIST_SHA1="b8318b09de06076d5397e6ec18ebef3b45cd315d" && \ | ||
export ROOT_DIST="https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz" && \ | ||
export ROOT_DIST_SHA1="a744e29da97fc3aadad1ee0d7d89b0d899645e50" && \ | ||
\ | ||
$BOOTSTRAP_PURE |
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
Binary file not shown.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM tudorg/xgo-1.6 | ||
FROM tudorg/xgo-1.7 | ||
|
||
MAINTAINER Tudor Golubenco <[email protected]> | ||
|
||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
#!/bin/sh | ||
|
||
docker build --rm=true -t tudorg/xgo-base base/ && \ | ||
docker build --rm=true -t tudorg/xgo-1.6 go-1.6/ && | ||
docker build --rm=true -t tudorg/xgo-1.7 go-1.7/ && | ||
docker build --rm=true -t tudorg/beats-builder beats-builder |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Go cross compiler (xgo): Go 1.6 layer | ||
# Go cross compiler (xgo): Go 1.7 layer | ||
# Copyright (c) 2014 Péter Szilágyi. All rights reserved. | ||
# | ||
# Released under the MIT license. | ||
|
@@ -9,7 +9,7 @@ MAINTAINER Tudor Golubenco <[email protected]> | |
|
||
# Configure the root Go distribution and bootstrap based on it | ||
RUN \ | ||
export ROOT_DIST="https://storage.googleapis.com/golang/go1.6.2.linux-amd64.tar.gz" && \ | ||
export ROOT_DIST_SHA1="b8318b09de06076d5397e6ec18ebef3b45cd315d" && \ | ||
export ROOT_DIST="https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz" && \ | ||
export ROOT_DIST_SHA1="a744e29da97fc3aadad1ee0d7d89b0d899645e50" && \ | ||
\ | ||
$BOOTSTRAP_PURE |
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Beats dockerfile used for testing | ||
FROM golang:1.6 | ||
FROM golang:1.7 | ||
MAINTAINER Nicolas Ruflin <[email protected]> | ||
|
||
RUN set -x && \ | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.6.2 | ||
FROM golang:1.7 | ||
MAINTAINER Nicolas Ruflin <[email protected]> | ||
|
||
RUN set -x && \ | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Beats dockerfile used for testing | ||
FROM golang:1.6.2 | ||
FROM golang:1.7 | ||
MAINTAINER Nicolas Ruflin <[email protected]> | ||
|
||
RUN set -x && \ | ||
|