Skip to content

Commit 9b11c48

Browse files
author
OpenShift Bot
committed
Merge pull request #4640 from smarterclayton/simplify_release
Merged by openshift-bot
2 parents cb4fa19 + f1441e1 commit 9b11c48

File tree

2 files changed

+30
-14
lines changed

2 files changed

+30
-14
lines changed

hack/build-release.sh

-9
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,3 @@ gzip -f "${context}/archive.tar"
3939
cat "${context}/archive.tar.gz" | docker run -i --cidfile="${context}/cid" openshift/origin-release
4040
docker cp $(cat ${context}/cid):/go/src/github.com/openshift/origin/_output/local/releases "${OS_OUTPUT}"
4141
echo "${OS_GIT_COMMIT}" > "${OS_LOCAL_RELEASEPATH}/.commit"
42-
43-
# Copy the linux release archives release back to the local _output/local/go/bin directory.
44-
os::build::detect_local_release_tars "linux"
45-
46-
mkdir -p "${OS_LOCAL_BINPATH}"
47-
tar mxzf "${OS_PRIMARY_RELEASE_TAR}" -C "${OS_LOCAL_BINPATH}"
48-
tar mxzf "${OS_IMAGE_RELEASE_TAR}" -C "${OS_LOCAL_BINPATH}"
49-
50-
os::build::make_openshift_binary_symlinks

hack/common.sh

+30-5
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,18 @@ readonly OPENSHIFT_BINARY_SYMLINKS=(
7575
)
7676
readonly OPENSHIFT_BINARY_COPY=(
7777
oadm
78+
kubelet
79+
kube-proxy
80+
kube-apiserver
81+
kube-controller-manager
82+
kube-scheduler
83+
)
84+
readonly OC_BINARY_COPY=(
85+
kubectl
86+
)
87+
readonly OS_BINARY_RELEASE_WINDOWS=(
88+
oc.exe
89+
kubectl.exe
7890
)
7991

8092
# os::build::binaries_from_targets take a list of build targets and return the
@@ -316,16 +328,29 @@ os::build::place_bins() {
316328
for linkname in "${OPENSHIFT_BINARY_COPY[@]}"; do
317329
local src="${release_binpath}/openshift${suffix}"
318330
if [[ -f "${src}" ]]; then
319-
cp "${release_binpath}/openshift${suffix}" "${release_binpath}/${linkname}${suffix}"
331+
ln "${release_binpath}/openshift${suffix}" "${release_binpath}/${linkname}${suffix}"
332+
fi
333+
done
334+
for linkname in "${OC_BINARY_COPY[@]}"; do
335+
local src="${release_binpath}/oc${suffix}"
336+
if [[ -f "${src}" ]]; then
337+
ln "${release_binpath}/oc${suffix}" "${release_binpath}/${linkname}${suffix}"
320338
fi
321339
done
322340

323341
# Create the release archive.
324342
local platform_segment="${platform//\//-}"
325-
local archive_name="${OS_RELEASE_ARCHIVE}-${OS_GIT_VERSION}-${OS_GIT_COMMIT}-${platform_segment}.tar.gz"
326-
327-
echo "++ Creating ${archive_name}"
328-
tar -czf "${OS_LOCAL_RELEASEPATH}/${archive_name}" -C "${release_binpath}" .
343+
if [[ $platform == "windows/amd64" ]]; then
344+
local archive_name="${OS_RELEASE_ARCHIVE}-${OS_GIT_VERSION}-${OS_GIT_COMMIT}-${platform_segment}.zip"
345+
echo "++ Creating ${archive_name}"
346+
for file in "${OS_BINARY_RELEASE_WINDOWS[@]}"; do
347+
zip "${OS_LOCAL_RELEASEPATH}/${archive_name}" -qj "${release_binpath}/${file}"
348+
done
349+
else
350+
local archive_name="${OS_RELEASE_ARCHIVE}-${OS_GIT_VERSION}-${OS_GIT_COMMIT}-${platform_segment}.tar.gz"
351+
echo "++ Creating ${archive_name}"
352+
tar -czf "${OS_LOCAL_RELEASEPATH}/${archive_name}" -C "${release_binpath}" .
353+
fi
329354
rm -rf "${release_binpath}"
330355
done
331356
)

0 commit comments

Comments
 (0)