Skip to content
Snippets Groups Projects
Commit 7dde627a authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

Merge pull request #1230 from tbetbetbe/grpc_tools_update_deb_release

Grpc tools update debian release
parents e6dc81fa ded51698
No related branches found
No related tags found
No related merge requests found
...@@ -30,9 +30,13 @@ ...@@ -30,9 +30,13 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# Where to put resulting .deb packages. # Where to put resulting .deb packages.
set -x
deb_dest="/tmp/deb_out" deb_dest="/tmp/deb_out"
mkdir -p $deb_dest mkdir -p $deb_dest
# Where the grpc disto is
grpc_root="/var/local/git/grpc"
# Update version from default values if the file /version.txt exists # Update version from default values if the file /version.txt exists
# #
# - when present, /version.txt will added by the docker build. # - when present, /version.txt will added by the docker build.
...@@ -71,7 +75,9 @@ do ...@@ -71,7 +75,9 @@ do
if [ $pkg_name == "libgrpc" ] if [ $pkg_name == "libgrpc" ]
then then
# Copy shared libraries # Copy shared libraries
(cd ../..; make install-shared_c prefix=$tmp_dir/$pkg_name/usr/lib) pushd $grpc_root
make install-shared_c prefix=$tmp_dir/$pkg_name/usr/lib
popd
mv $tmp_dir/$pkg_name/usr/lib/lib $arch_lib_dir mv $tmp_dir/$pkg_name/usr/lib/lib $arch_lib_dir
# non-dev package should contain so.0 symlinks # non-dev package should contain so.0 symlinks
...@@ -84,7 +90,10 @@ do ...@@ -84,7 +90,10 @@ do
if [ $pkg_name == "libgrpc-dev" ] if [ $pkg_name == "libgrpc-dev" ]
then then
# Copy headers and static libraries # Copy headers and static libraries
(cd ../..; make install-headers_c install-static_c prefix=$tmp_dir/$pkg_name/usr/lib) pushd $grpc_root
make install-headers_c install-static_c prefix=$tmp_dir/$pkg_name/usr/lib
popd
mv $tmp_dir/$pkg_name/usr/lib/include $tmp_dir/$pkg_name/usr/include mv $tmp_dir/$pkg_name/usr/lib/include $tmp_dir/$pkg_name/usr/include
mv $tmp_dir/$pkg_name/usr/lib/lib $arch_lib_dir mv $tmp_dir/$pkg_name/usr/lib/lib $arch_lib_dir
......
...@@ -2,7 +2,8 @@ Package: libgrpc ...@@ -2,7 +2,8 @@ Package: libgrpc
Version: 0.5.0 Version: 0.5.0
Architecture: amd64 Architecture: amd64
Maintainer: Jan Tattermusch <jtattermusch@google.com> Maintainer: Jan Tattermusch <jtattermusch@google.com>
Depends: libc6 Depends: libc6, openssl (1.0.2-1)
Build-Depends-Indep: openssl (1.0.2-1)
Section: libs Section: libs
Priority: optional Priority: optional
Homepage: https://github.com/grpc/grpc Homepage: https://github.com/grpc/grpc
......
...@@ -33,8 +33,14 @@ FROM grpc/base ...@@ -33,8 +33,14 @@ FROM grpc/base
# Add the file containing the gRPC version # Add the file containing the gRPC version
ADD version.txt version.txt ADD version.txt version.txt
# Add the update-to-date distpackages folder
ADD distpackages distpackages
# Install dependencies # Install dependencies
RUN apt-get update && apt-get install -y lintian RUN echo 'deb http://http.debian.net/debian experimental main contrib non-free' >> /etc/apt/sources.list
RUN apt-get update \
&& apt-get -t experimental install -y openssl=1.0.2-1 \
&& apt-get install -y lintian
# Get the source from GitHub # Get the source from GitHub
RUN git clone https://github.com/grpc/grpc.git /var/local/git/grpc RUN git clone https://github.com/grpc/grpc.git /var/local/git/grpc
...@@ -42,4 +48,4 @@ RUN cd /var/local/git/grpc && \ ...@@ -42,4 +48,4 @@ RUN cd /var/local/git/grpc && \
git pull --recurse-submodules && \ git pull --recurse-submodules && \
git submodule update --init --recursive git submodule update --init --recursive
RUN /bin/bash -l -c 'cd /var/local/git/grpc/tools/distpackages && ./build_deb_packages.sh' RUN /bin/bash -l -c 'cd /distpackages && ./build_deb_packages.sh'
0.5.1 0.6.0
0.5.0 0.6.0
...@@ -747,6 +747,11 @@ grpc_build_debs() { ...@@ -747,6 +747,11 @@ grpc_build_debs() {
local project_opt="--project $grpc_project" local project_opt="--project $grpc_project"
local zone_opt="--zone $grpc_zone" local zone_opt="--zone $grpc_zone"
# Update the remote distpackages_dir
local src_dist_dir='tools/distpackages'
local rmt_dist_dir="$host:~"
gcloud compute copy-files $src_dist_dir $rmt_dist_dir $project_opt $zone_opt || return 1
# rebuild the build_deb image # rebuild the build_deb image
local label='build_deb' local label='build_deb'
grpc_update_image -- -h $host $label || return 1 grpc_update_image -- -h $host $label || return 1
......
...@@ -434,6 +434,12 @@ grpc_dockerfile_install() { ...@@ -434,6 +434,12 @@ grpc_dockerfile_install() {
grpc_docker_sync_service_account $dockerfile_dir/service_account || return 1; grpc_docker_sync_service_account $dockerfile_dir/service_account || return 1;
} }
# For deb builds, copy the distpackages folder into the docker directory so
# that it can be installed using ADD distpackages distpackages.
[[ $image_label == "grpc/build_deb" ]] && {
cp -vR ~/distpackages $dockerfile_dir
}
# TODO(temiola): maybe make cache/no-cache a func option? # TODO(temiola): maybe make cache/no-cache a func option?
sudo docker build $cache_opt -t $image_label $dockerfile_dir || { sudo docker build $cache_opt -t $image_label $dockerfile_dir || {
echo "$FUNCNAME:: build of $image_label <- $dockerfile_dir" echo "$FUNCNAME:: build of $image_label <- $dockerfile_dir"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment