
Patch for https://github.com/containernetworking/plugins/pull/85
+ Windows cni plugins are added
(*) win-bridge (hostgw)
(*) win-overlay (vxlan)
+ Windows netconf unit test
+ Fix appveyor config to run the test
+ Build release support for windows plugins
Address comments
From:
- https://github.com/containernetworking/plugins/pull/85
- 0049c64e3f
39 lines
800 B
Bash
Executable File
39 lines
800 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
cd $(dirname "$0")
|
|
|
|
if [ "$(uname)" == "Darwin" ]; then
|
|
export GOOS="${GOOS:-linux}"
|
|
fi
|
|
|
|
ORG_PATH="github.com/containernetworking"
|
|
export REPO_PATH="${ORG_PATH}/plugins"
|
|
|
|
if [ ! -h gopath/src/${REPO_PATH} ]; then
|
|
mkdir -p gopath/src/${ORG_PATH}
|
|
ln -s ../../../.. gopath/src/${REPO_PATH} || exit 255
|
|
fi
|
|
|
|
export GOPATH=${PWD}/gopath
|
|
export GO="${GO:-go}"
|
|
|
|
mkdir -p "${PWD}/bin"
|
|
|
|
echo "Building plugins ${GOOS}"
|
|
PLUGINS="plugins/meta/* plugins/main/* plugins/ipam/* plugins/sample"
|
|
for d in $PLUGINS; do
|
|
if [ -d "$d" ]; then
|
|
plugin="$(basename "$d")"
|
|
if [ $plugin == "windows" ]
|
|
then
|
|
if [ "$GOARCH" == "amd64" ]
|
|
then
|
|
GOOS=windows . $d/build.sh
|
|
fi
|
|
else
|
|
echo " $plugin"
|
|
$GO build -o "${PWD}/bin/$plugin" "$@" "$REPO_PATH"/$d
|
|
fi
|
|
fi
|
|
done
|