The previous update used a commit from master. Now that all the fixes are backported to the containerd 1.2 release branch, we can switch back to that branch. Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 2fb5de68a9bd05b1dbf3ae3f7ae82bcd5e64dc5c) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: db7f375d6a2aaf6d79f5c690e2f302c640bdde04 Component: engine
37 lines
986 B
Bash
Executable File
37 lines
986 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
# containerd is also pinned in vendor.conf. When updating the binary
|
|
# version you may also need to update the vendor version to pick up bug
|
|
# fixes or new APIs.
|
|
CONTAINERD_COMMIT=de1f167ab96338a9f5c2b17347abf84bdf1dd411 # v1.2.1-rc.0
|
|
|
|
install_containerd() {
|
|
echo "Install containerd version $CONTAINERD_COMMIT"
|
|
git clone https://github.com/containerd/containerd.git "$GOPATH/src/github.com/containerd/containerd"
|
|
cd "$GOPATH/src/github.com/containerd/containerd"
|
|
git checkout -q "$CONTAINERD_COMMIT"
|
|
|
|
(
|
|
|
|
export BUILDTAGS='netgo osusergo static_build'
|
|
export EXTRA_FLAGS='-buildmode=pie'
|
|
export EXTRA_LDFLAGS='-extldflags "-fno-PIC -static"'
|
|
|
|
# Reset build flags to nothing if we want a dynbinary
|
|
if [ "$1" == "dynamic" ]; then
|
|
export BUILDTAGS=''
|
|
export EXTRA_FLAGS=''
|
|
export EXTRA_LDFLAGS=''
|
|
fi
|
|
|
|
make
|
|
)
|
|
|
|
mkdir -p ${PREFIX}
|
|
|
|
cp bin/containerd ${PREFIX}/containerd
|
|
cp bin/containerd-shim ${PREFIX}/containerd-shim
|
|
cp bin/ctr ${PREFIX}/ctr
|
|
}
|