mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 18:55:18 +01:00
854f606f63
Move the notary-server and notary signer into ./notary/release-${notaryversion} as this will not impact the release branches, the binaries in ./notary are v0.5.1. Signed-off-by: wang yan <wangyan@vmware.com>
45 lines
869 B
Bash
Executable File
45 lines
869 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set +e
|
|
|
|
if [ -z $1 ]; then
|
|
error "Please set the 'version' variable"
|
|
exit 1
|
|
fi
|
|
|
|
VERSION="$1"
|
|
|
|
set -e
|
|
|
|
# the temp folder to store binary file...
|
|
mkdir -p binary
|
|
rm -rf binary/notary-server || true
|
|
rm -rf binary/notary-signer || true
|
|
|
|
cd `dirname $0`
|
|
cur=$PWD
|
|
|
|
# the temp folder to store notary source code...
|
|
TEMP=`mktemp -d /$TMPDIR/notary.XXXXXX`
|
|
git clone -b $VERSION https://github.com/theupdateframework/notary.git $TEMP
|
|
|
|
echo 'build the notary binary bases on the golang:1.7.3...'
|
|
cp binary.Dockerfile $TEMP
|
|
cd $TEMP
|
|
docker build -f binary.Dockerfile -t notary-golang $TEMP
|
|
cp -r $TEMP/migrations binary
|
|
|
|
echo 'copy the notary binary to local...'
|
|
ID=$(docker create notary-golang)
|
|
echo $ID
|
|
cd $cur
|
|
docker cp $ID:/go/bin/notary-server binary
|
|
docker cp $ID:/go/bin/notary-signer binary
|
|
|
|
docker rm -f $ID
|
|
docker rmi -f notary-golang
|
|
|
|
rm -rf $TEMP
|
|
|
|
|