blob: a5c32d315893c07e484138be17d87f6360a8f8cf [file] [log] [blame]
#!/usr/bin/env bash
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You 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.
#
## Refer to https://github.com/apache/spark/tree/master/dev/create-release
docker build -f Dockerfile -t apachekylin/release-machine:jdk8-slim .
ENVFILE="env.list"
cat > $ENVFILE <<EOF
DRY_RUN=$DRY_RUN
RUNNING_CI=$RUNNING_CI
GIT_BRANCH=$GIT_BRANCH
GIT_BRANCH_HADOOP3=$GIT_BRANCH_HADOOP3
NEXT_RELEASE_VERSION=$NEXT_RELEASE_VERSION
RELEASE_VERSION=$RELEASE_VERSION
RELEASE_TAG=$RELEASE_TAG
GIT_REF=$GIT_REF
GIT_REPO_URL=$GIT_REPO_URL
GIT_NAME=$GIT_NAME
GIT_EMAIL=$GIT_EMAIL
GPG_KEY=$GPG_KEY
ASF_USERNAME=$ASF_USERNAME
ASF_PASSWORD=$ASF_PASSWORD
GPG_PASSPHRASE=$GPG_PASSPHRASE
USER=$USER
EOF
docker stop kylin-release-machine
docker rm kylin-release-machine
docker run -i \
--env-file "$ENVFILE" \
--name kylin-release-machine \
apachekylin/release-machine:jdk8-slim
docker cp kylin-release-machine:/root/ci/apache-kylin-bin.tar.gz ../../apache-kylin-bin.tar.gz