mirror of https://github.com/kubevela/kubevela.git
125 lines
3.2 KiB
Bash
125 lines
3.2 KiB
Bash
#!/bin/bash -l
|
|
#
|
|
# Copyright 2021. The KubeVela Authors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
#
|
|
|
|
set -e
|
|
|
|
if [[ -n "$SSH_DEPLOY_KEY" ]]
|
|
then
|
|
mkdir -p ~/.ssh
|
|
echo "$SSH_DEPLOY_KEY" > ~/.ssh/id_rsa
|
|
chmod 600 ~/.ssh/id_rsa
|
|
fi
|
|
|
|
cd ..
|
|
|
|
git config --global user.email "kubevela.bot@aliyun.com"
|
|
git config --global user.name "kubevela-bot"
|
|
|
|
clearRepo() {
|
|
echo "git clone"
|
|
|
|
if [[ -n "$SSH_DEPLOY_KEY" ]]
|
|
then
|
|
git clone --single-branch --depth 1 git@github.com:oam-dev/kubevela-core-api.git kubevela-core-api
|
|
else
|
|
git clone --single-branch --depth 1 https://github.com/kubevela/kubevela-core-api.git kubevela-core-api
|
|
fi
|
|
|
|
echo "clear kubevela-core-api apis/"
|
|
rm -r kubevela-core-api/apis
|
|
|
|
echo "clear kubevela-core-api pkg/oam"
|
|
rm -r kubevela-core-api/pkg/oam/*
|
|
|
|
echo "clear kubevela-core-api pkg/utils/errors"
|
|
rm -rf kubevela-core-api/pkg/utils/errors/*
|
|
|
|
echo "clear kubevela-core-api pkg/generated/client"
|
|
if [[ -d "kubevela-core-api/pkg/generated/client/" ]]
|
|
then
|
|
rm -r kubevela-core-api/pkg/generated/client/*
|
|
else
|
|
mkdir -p kubevela-core-api/pkg/generated/client/
|
|
fi
|
|
}
|
|
|
|
updateRepo() {
|
|
echo "update kubevela-core-api apis/"
|
|
cp -R kubevela/apis kubevela-core-api/apis
|
|
|
|
echo "update kubevela-core-api pkg/oam"
|
|
cp -R kubevela/pkg/oam/* kubevela-core-api/pkg/oam/
|
|
|
|
echo "update kubevela-core-api pkg/utils/errors"
|
|
mkdir -p kubevela-core-api/pkg/utils/errors
|
|
cp -R kubevela/pkg/utils/errors/* kubevela-core-api/pkg/utils/errors/
|
|
|
|
echo "update kubevela-core-api pkg/generated/client"
|
|
cp -R kubevela/pkg/generated/client/* kubevela-core-api/pkg/generated/client/
|
|
|
|
echo "change import path"
|
|
find ./kubevela-core-api -type f -name "*.go" -print0 | xargs -0 sed -i 's|github.com/oam-dev/kubevela/|github.com/oam-dev/kubevela-core-api/|g'
|
|
}
|
|
|
|
testApi() {
|
|
cd kubevela-core-api
|
|
echo "test api"
|
|
go mod tidy
|
|
go build test/main.go
|
|
}
|
|
|
|
syncRepo() {
|
|
testApi
|
|
echo "push to kubevela-core-api"
|
|
if git diff --quiet
|
|
then
|
|
echo "no changes, skip pushing commit"
|
|
else
|
|
git add .
|
|
git commit -m "align with kubevela-$VERSION from commit $COMMIT_ID"
|
|
git push origin main
|
|
fi
|
|
|
|
# push new tag anyway
|
|
# Only tags if VERSION starts with refs/tags/, remove the prefix and push it
|
|
if [[ "$VERSION" == refs/tags/* ]]; then
|
|
VERSION=${VERSION#refs/tags/}
|
|
else
|
|
echo "VERSION $VERSION is not a tag, skip pushing tag"
|
|
return
|
|
fi
|
|
|
|
echo "push tag $VERSION"
|
|
git tag "$VERSION"
|
|
git push origin "$VERSION"
|
|
}
|
|
|
|
main() {
|
|
clearRepo
|
|
updateRepo
|
|
|
|
if [[ "$1" == "sync" ]]
|
|
then
|
|
syncRepo
|
|
fi
|
|
if [[ "$1" == "test" ]]
|
|
then
|
|
testApi
|
|
fi
|
|
}
|
|
|
|
main $1 |