mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-04 15:50:14 +00:00
77 lines
3.2 KiB
Bash
Executable File
77 lines
3.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "GITHUB_REF: $GITHUB_REF"
|
|
echo "GITHUB_SHA: $GITHUB_SHA"
|
|
|
|
export MAIN_BRANCH="master"
|
|
export MAIN_BRANCH_TAG="head"
|
|
|
|
function get_short_sha {
|
|
echo $(git rev-parse --short "$GITHUB_SHA"|head -c7)
|
|
}
|
|
|
|
export SHORT_SHA=$(get_short_sha)
|
|
echo "SHORT_SHA: $SHORT_SHA"
|
|
|
|
function get_tag {
|
|
echo $(echo ${GITHUB_REF} | sed -e "s,refs/heads/${MAIN_BRANCH},${MAIN_BRANCH_TAG},g" -e 's,refs/tags/,,g' -e 's,refs/heads/,,g' -e 's,refs/pull/\([0-9]*\).*,pr\1,g')
|
|
}
|
|
|
|
function get_tag_slim {
|
|
echo $(echo ${GITHUB_REF} | sed -e "s,refs/heads/${MAIN_BRANCH},${MAIN_BRANCH_TAG}-slim,g" -e 's,refs/tags/\(.*\),\1-slim,g' -e 's,refs/heads/\(.*\),\1-slim,g' -e 's,refs/pull/\([0-9]*\).*,pr\1-slim,g')
|
|
}
|
|
|
|
function get_tag_full {
|
|
echo $(echo ${GITHUB_REF} | sed -e "s,refs/heads/${MAIN_BRANCH},${MAIN_BRANCH_TAG}-full,g" -e 's,refs/tags/\(.*\),\1-full,g' -e 's,refs/heads/\(.*\),\1-full,g' -e 's,refs/pull/\([0-9]*\).*,pr\1-full,g')
|
|
}
|
|
|
|
function get_python_docker_release_v() {
|
|
echo "$(echo "${GITHUB_REF}" | \
|
|
sed -e "s,refs/heads/${MAIN_BRANCH},1\!0.0.0+docker.${SHORT_SHA},g" \
|
|
-e 's,refs/heads/\(.*\),1!0.0.0+docker.\1,g' \
|
|
-e 's,refs/tags/v\([0-9a-zA-Z.]*\).*,\1+docker,g' \
|
|
-e 's,refs/pull/\([0-9]*\).*,1!0.0.0+docker.pr\1,g' \
|
|
)"
|
|
}
|
|
# To run these, set TEST_DOCKER_HELPERS=1 and then copy the function + test cases into a bash shell.
|
|
if [ ${TEST_DOCKER_HELPERS:-0} -eq 1 ]; then
|
|
GITHUB_REF="refs/pull/4788/merge" get_python_docker_release_v # '1!0.0.0+docker.pr4788'
|
|
GITHUB_REF="refs/tags/v0.1.2-test" get_python_docker_release_v # '0.1.2'
|
|
GITHUB_REF="refs/tags/v0.1.2.1-test" get_python_docker_release_v # '0.1.2.1'
|
|
GITHUB_REF="refs/tags/v0.1.2rc1-test" get_python_docker_release_v # '0.1.2rc1'
|
|
GITHUB_REF="refs/heads/branch-name" get_python_docker_release_v # '1!0.0.0+docker.branch-name'
|
|
fi
|
|
|
|
function get_unique_tag {
|
|
echo $(echo ${GITHUB_REF} | sed -e "s,refs/heads/${MAIN_BRANCH},${SHORT_SHA},g" -e 's,refs/tags/,,g' -e "s,refs/heads/.*,${SHORT_SHA},g" -e 's,refs/pull/\([0-9]*\).*,pr\1,g')
|
|
}
|
|
|
|
function get_unique_tag_slim {
|
|
echo $(echo ${GITHUB_REF} | sed -e "s,refs/heads/${MAIN_BRANCH},${SHORT_SHA}-slim,g" -e 's,refs/tags/\(.*\),\1-slim,g' -e "s,refs/heads/.*,${SHORT_SHA}-slim,g" -e 's,refs/pull/\([0-9]*\).*,pr\1-slim,g')
|
|
}
|
|
|
|
function get_unique_tag_full {
|
|
echo $(echo ${GITHUB_REF} | sed -e "s,refs/heads/${MAIN_BRANCH},${SHORT_SHA}-full,g" -e 's,refs/tags/\(.*\),\1-full,g' -e "s,refs/heads/.*,${SHORT_SHA}-full,g" -e 's,refs/pull/\([0-9]*\).*,pr\1-full,g')
|
|
}
|
|
|
|
function get_platforms_based_on_branch {
|
|
if [ "${{ github.event_name }}" == 'push' && "${{ github.ref }}" == "refs/heads/${MAIN_BRANCH}" ]; then
|
|
echo "linux/amd64,linux/arm64"
|
|
else
|
|
echo "linux/amd64"
|
|
fi
|
|
}
|
|
|
|
function echo_tags {
|
|
echo "short_sha=${SHORT_SHA}"
|
|
echo "tag=$(get_tag)"
|
|
echo "slim_tag=$(get_tag_slim)"
|
|
echo "full_tag=$(get_tag_full)"
|
|
echo "unique_tag=$(get_unique_tag)"
|
|
echo "unique_slim_tag=$(get_unique_tag_slim)"
|
|
echo "unique_full_tag=$(get_unique_tag_full)"
|
|
echo "python_release_version=$(get_python_docker_release_v)"
|
|
echo "branch_name=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}"
|
|
echo "repository_name=${GITHUB_REPOSITORY#*/}"
|
|
}
|