bzhaoopenstack
f7793649ec
Fix failed to copy binary when using make bin
...
If we use make bin, XC_OS and XC_ARCH will be None, the binary will failed to be copied.
2019-06-15 00:34:33 +08:00
Megan Marsh
5e23083df1
Merge pull request #7605 from hashicorp/verbose-packer-binary-copy
...
scripts/build.sh: don't discard stderr when copying packer
2019-05-07 10:23:20 -07:00
Adrien Delorme
5f076d4328
allow building packer on solaris by removing progress bar and tty imports
...
fix #7586
2019-05-07 15:58:49 +02:00
Adrien Delorme
e8ac0e6c75
scripts/build.sh: don't discard stderr when copying packer
...
fix #7604
2019-05-06 11:06:38 +02:00
Guillaume J. Charmes
36641e66a7
Update build.sh. Remove solaris, add mipsXX and s390x
...
Signed-off-by: Guillaume J. Charmes <gcharmes@magicleap.com>
2019-04-25 16:29:25 -04:00
Adrien Delorme
413e242a14
Revert "scripts/build.sh: allow to set build settings when building"
...
This reverts commit f6be550f1a
.
2019-04-15 16:35:32 +02:00
Adrien Delorme
f6be550f1a
scripts/build.sh: allow to set build settings when building
...
this will for example allow me to have the following alias:
alias buildmain='export T=$(mktemp -d) && ALL_XC_OS="linux darwin windows" ALL_XC_ARCH="amd64" GOLDFLAGS="-s -w" ./scripts/build.sh && cd pkg/ && for dir in *; do zip -r "$dir.zip" $dir & ; done ; wait && mv *.zip $T/. && open $T'
that build only on 'main' platforms, so that I can share binaries easily.
2019-02-19 15:10:30 +01:00
Daniel Poggenpohl
6857e937e2
- FIX: That's what I get for wanting to use fancy or/and piping, back to basics (Now using explicit rc test to decide whether to quit)
2019-02-01 23:11:22 +01:00
Daniel Poggenpohl
b0abd1fbf3
- FIX: I should call my defined functions, else they are useless
2019-02-01 20:48:42 +01:00
Daniel Poggenpohl
ce760eec09
- More comments
...
- encapsulated code in functions to make it more readable
- validate presence of used tools/binaries (check if they're in PATH)
- more output
- FIX: make all uname/OSTYPE output to lowercase and check only for that
- refactored method name convert_path -> convertPathOnCygwin
- gave convert_path two arguments to make it more readable (Readability over tight code? I don't know what is required)
- some variable expansion now uses braces
2019-01-31 15:50:10 +01:00
Matthew Patton
554b2b4a5d
ignore errors during Find
2018-04-09 19:47:41 -04:00
Matthew Patton
d5bf9277ce
remove rebase duplicate
2018-04-07 05:33:46 -04:00
Matthew Patton
6a85f5aed7
handle missing GOPATH and cygwin considerations
2018-04-07 05:29:43 -04:00
Matthew Patton
1d0cf3d909
handle missing GOPATH and cygwin considerations
2018-04-07 05:24:31 -04:00
Matthew Hooker
339d768420
add ppc64le as a build target
2017-09-25 15:38:32 -07:00
Matthew Hooker
b7ddf80155
build solaris binary
2017-08-21 12:32:16 -07:00
Matthew Hooker
4ce0d91ae2
add support for building arm64 binaries
2017-05-15 13:31:38 -07:00
Matthew Hooker
d805f5c8a5
put back the goose
2017-05-04 20:45:17 -07:00
Matthew Hooker
97892349dd
vastly speed up dev builds.
...
Copies work from hashicorp/consul#2924
2017-05-04 20:30:09 -07:00
Matthew Hooker
81522dced0
move packer to hashicorp
2017-04-04 13:39:01 -07:00
Sean Chittenden
d430b7b763
Go's -X linker flag now requires only one argument ( #3540 )
...
This fixes building `packer` with Go >1.6. From https://golang.org/cmd/link/ :
```
-X importpath.name=value
Set the value of the string variable in importpath named name to value.
Note that before Go 1.5 this option took two separate arguments.
Now it takes one argument split on the first = sign.
```
2016-05-17 13:24:04 -07:00
Christopher Boumenot
728c496370
Move version to its own package. ( #3460 )
2016-04-21 13:19:43 -07:00
Chris Bednarski
c10e0eb398
Removed go get from build scripts since we have these in vendor already
2016-02-05 13:42:27 -08:00
Rickard von Essen
38612d45a9
Make all scripts portable regardless of where bash is installed.
2015-11-04 15:29:26 +01:00
Chris Bednarski
a143f1e085
Updated build.sh so it doesn't build all the plugins separately anymore
2015-10-21 16:57:38 -07:00
Chris Bednarski
938f2178d7
Overhaul the Makefile
...
- Fix updatedeps reverting to master, which causes Travis CI to produce invalid results for pull-request builds. The makefile attempts to detect this change and checkout the correct branch if it happens.
- Clean up the code style and failure messaging.
- Add / update proxy targets for common workflows: default, deps, ci, release
2015-08-21 18:25:58 -07:00
Gonzalo Peci
0006cce41b
When using MinGW gopath uses ; as separators, if we use : it strips everything after the driver letter. EG: C:\GO_Working\ gets stripped to C and makes ```make dev``` and ```make``` fail
2015-08-21 13:58:33 +12:00
Mitchell Hashimoto
ddeefdcedd
scripts: ignore errors on gox for now
2014-09-11 11:51:44 -07:00
Mitchell Hashimoto
fd54017233
scripts: reintroduce dist
2014-09-11 11:51:20 -07:00
Mitchell Hashimoto
f4b73c7ebf
scripts: build should do everything now
2014-09-11 11:16:59 -07:00
Mitchell Hashimoto
c5dc0f9e7d
scripts: add openbsd/freebsd to builds
2014-09-10 16:10:33 -07:00
Ross Smith II
f36b20ca28
make sure executable is named packer.exe in Windows build [GH-1483]
2014-09-10 09:47:49 -07:00
Mitchell Hashimoto
7078c2f922
Fix some scripts
2014-09-08 17:03:38 -07:00
Mitchell Hashimoto
a23eb7512f
scripts: copy packer- prefixed bins properly [GH-1467]
2014-09-07 15:58:36 -07:00
Mitchell Hashimoto
49ac4acdd2
scripts: able to set XC_ARCH/OS manually
2014-09-04 15:13:29 -07:00
Mitchell Hashimoto
2788ccc653
Update scripts to latest HashiCorp style
2014-09-02 15:13:55 -07:00
Mitchell Hashimoto
8516e03eed
scripts: update to use gox
2013-11-18 15:37:14 -08:00
Mitchell Hashimoto
5d3b40dcbf
Build script now installs binaries to $GOPATH/bin
2013-10-20 16:16:05 -07:00
Kirill Kazakov
678eb38e18
scripts: build.sh exits without being killed by SIGTERM
2013-09-27 14:27:47 +04:00
Mitchell Hashimoto
1e309b6609
scripts: PACKER_NO_BUILD_PARALLEL to build in sequence
2013-09-22 10:03:04 -07:00
Mitchell Hashimoto
6511b1892c
scripts: build.sh compiles all Packer components in parallel
2013-09-22 09:58:34 -07:00
Mitchell Hashimoto
5b7865f085
scripts: build.sh appends .exe on Windows [GH-397]
2013-09-06 11:34:01 -07:00
Mitchell Hashimoto
fd64600414
scripts: build go get ./... early to speed up builds
2013-08-21 11:20:55 -07:00
Mitchell Hashimoto
185f176937
scripts: set PACKER_RACE to build with race detector
2013-08-21 11:15:09 -07:00
Mitchell Hashimoto
923521e5df
scripts: full SHA1 in build, not short
2013-08-12 09:17:03 -07:00
Mitchell Hashimoto
56aff48143
scripts: add -e to build.sh again
2013-07-09 12:42:54 -07:00
Mitchell Hashimoto
d7ecf57b06
script: build completes
2013-07-09 12:41:36 -07:00
Steven Merrill
6a79d797d2
Don't allow a dirty Git tree to fail the make command.
2013-07-09 01:24:19 -04:00
Mitchell Hashimoto
45dfcf59c9
scripts: Add git commit to builds
2013-07-08 15:37:01 -07:00
Julian Phillips
c077232744
Fix building on Ubuntu
...
1) /bin/sh is not /bin/bash, so build.sh needs to explictly use /bin/bash
2) dash's echo does not support \x, but it does support \0 (since dash is
/bin/sh, it gets used by Makefiles).
2013-06-30 13:15:19 +01:00