This repository has been archived by the owner on May 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2116 from jcvenegas/1.8.3-branch-bump
# Kata Containers 1.8.3
- Loading branch information
Showing
3 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/bin/bash | ||
# | ||
# Copyright (c) 2019 Intel Corporation | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# The purpose of this script is to | ||
# run the tag_repos.sh script that is in the | ||
# packaging repository which checks the VERSION | ||
# file from the components in order to verify | ||
# that the VERSION matches between them. | ||
# This ensures that the rest | ||
# of the components are merged before the runtime | ||
|
||
set -e | ||
|
||
GOPATH=${GOPATH:-${HOME}/go} | ||
|
||
PACKAGING_REPO="github.com/kata-containers/packaging" | ||
RUNTIME_REPO="github.com/kata-containers/runtime" | ||
KATA_BRANCH=${target_branch:-master} | ||
|
||
go get -d "${PACKAGING_REPO}" || true | ||
|
||
check_changes=$(git diff --name-only "origin/${KATA_BRANCH}" | grep VERSION) | ||
version_to_check=$(cat "${GOPATH}/src/${RUNTIME_REPO}/VERSION") | ||
|
||
if [ ! -z "$check_changes" ]; then | ||
echo "Changes detected on VERSION" | ||
echo "Check versions in branch ${KATA_BRANCH}" | ||
pushd "${GOPATH}/src/${PACKAGING_REPO}" | ||
./release/tag_repos.sh -b "${KATA_BRANCH}" pre-release "${version_to_check}" | ||
popd | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.8.2 | ||
1.8.3 |