1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-11-30 08:06:52 +02:00
woodpecker/.drone.sh

26 lines
850 B
Bash
Raw Normal View History

2017-05-08 02:01:04 +02:00
#!/bin/sh
# only execute this script as part of the pipeline.
2017-05-08 03:03:38 +02:00
[ -z "$CI" ] && echo "missing ci enviornment variable" && exit 2
2017-05-08 02:01:04 +02:00
# only execute the script when github token exists.
2017-05-08 03:03:38 +02:00
[ -z "$SSH_KEY" ] && echo "missing ssh key" && exit 3
2017-05-08 02:01:04 +02:00
2017-05-08 03:03:38 +02:00
# write the ssh key.
2017-05-08 02:02:27 +02:00
mkdir /root/.ssh
echo -n "$SSH_KEY" > /root/.ssh/id_rsa
chmod 600 /root/.ssh/id_rsa
2017-05-08 02:01:04 +02:00
2017-05-08 03:21:54 +02:00
# add github.com to our known hosts.
touch /root/.ssh/known_hosts
chmod 600 /root/.ssh/known_hosts
ssh-keyscan -H github.com > /etc/ssh/ssh_known_hosts 2> /dev/null
2017-05-08 03:03:38 +02:00
2017-05-08 02:01:04 +02:00
# clone the extras project.
2017-05-08 02:14:53 +02:00
set -e
set -x
2017-05-08 03:03:38 +02:00
git clone git@github.com:drone/drone-enterprise.git extras
2017-05-08 02:01:04 +02:00
# 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