-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #224 from paketo-buildpacks/update/pipeline
Bump pipeline from 1.37.2 to 1.37.2
- Loading branch information
Showing
2 changed files
with
11 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,8 @@ | |
# limitations under the License. | ||
|
||
bin/ | ||
linux/ | ||
dependencies/ | ||
package/ | ||
scratch/ | ||
|
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,19 +1,19 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
GOOS="linux" go build -ldflags='-s -w' -o bin/main github.com/paketo-buildpacks/procfile/v5/cmd/main | ||
GOOS="windows" GOARCH="amd64" go build -ldflags='-s -w' -o bin/main.exe github.com/paketo-buildpacks/procfile/v5/cmd/main | ||
GOMOD=$(head -1 go.mod | awk '{print $2}') | ||
GOOS="linux" go build -ldflags='-s -w' -o linux/amd64/bin/main "$GOMOD/cmd/main" | ||
GOOS="linux" GOARCH="arm64" go build -ldflags='-s -w' -o linux/arm64/bin/main "$GOMOD/cmd/main" | ||
|
||
if [ "${STRIP:-false}" != "false" ]; then | ||
strip bin/main bin/main.exe | ||
strip linux/amd64/bin/main linux/arm64/bin/main | ||
fi | ||
|
||
if [ "${COMPRESS:-none}" != "none" ]; then | ||
$COMPRESS bin/main bin/main.exe | ||
$COMPRESS linux/amd64/bin/main linux/arm64/bin/main | ||
fi | ||
|
||
ln -fs main bin/build | ||
ln -fs main bin/detect | ||
ln -fs main.exe bin/build.exe | ||
ln -fs main.exe bin/detect.exe | ||
ln -fs main linux/amd64/bin/build | ||
ln -fs main linux/arm64/bin/build | ||
ln -fs main linux/amd64/bin/detect | ||
ln -fs main linux/arm64/bin/detect |