2017-05-08 00:01:04 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# only execute this script as part of the pipeline.
|
|
|
|
[ -z $CI ] && exit 1
|
|
|
|
|
|
|
|
# only execute the script when github token exists.
|
|
|
|
[ -z $SSH_KEY ] && exit 1
|
|
|
|
|
|
|
|
# write a netrc file for authorization.
|
2017-05-08 00:02:27 +00:00
|
|
|
mkdir /root/.ssh
|
|
|
|
echo -n "$SSH_KEY" > /root/.ssh/id_rsa
|
|
|
|
chmod 600 /root/.ssh/id_rsa
|
2017-05-08 00:01:04 +00:00
|
|
|
|
|
|
|
# clone the extras project.
|
|
|
|
set +x
|
|
|
|
git clone git@github.com:drone/drone-enterprise.git extras
|
|
|
|
|
|
|
|
# build a static binary with the build number and extra features.
|
|
|
|
go build -ldflags '-extldflags "-static" -X github.com/drone/drone/version.VersionDev=build.${DRONE_BUILD_NUMBER}' -tags extras -o release/drone github.com/drone/drone/drone
|