mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-27 07:48:55 +00:00
release: don't checkout packaging from packaging
We ran into issues in the past since we didn't create stable branches for the packaging repository. We will maintain this appropriately going forward, so let's go ahead and remove the notion of local versus remote. Signed-off-by: Eric Ernst <eric.ernst@intel.com>
This commit is contained in:
parent
643ddf9907
commit
f2ef8411fa
@ -109,15 +109,7 @@ install_image() {
|
||||
|
||||
#Install kernel asset
|
||||
install_kernel() {
|
||||
if [[ "$test_local" == "true" ]]; then
|
||||
pushd "${script_dir}/../"
|
||||
else
|
||||
go get "github.com/${project}/packaging" || true
|
||||
pushd ${GOPATH}/src/github.com/${project}/packaging >>/dev/null
|
||||
git checkout "${kata_version}-kernel-config" ||
|
||||
git checkout "${kata_version}"
|
||||
fi
|
||||
|
||||
info "build kernel"
|
||||
./kernel/build-kernel.sh setup
|
||||
./kernel/build-kernel.sh build
|
||||
@ -128,15 +120,7 @@ install_kernel() {
|
||||
|
||||
#Install experimental kernel asset
|
||||
install_experimental_kernel() {
|
||||
if [[ "$test_local" == "true" ]]; then
|
||||
pushd "${script_dir}/../"
|
||||
else
|
||||
go get "github.com/${project}/packaging" || true
|
||||
pushd ${GOPATH}/src/github.com/${project}/packaging >>/dev/null
|
||||
git checkout "${kata_version}-kernel-config" ||
|
||||
git checkout "${kata_version}"
|
||||
fi
|
||||
|
||||
info "build experimental kernel"
|
||||
./kernel/build-kernel.sh -e setup
|
||||
./kernel/build-kernel.sh -e build
|
||||
|
Loading…
Reference in New Issue
Block a user