Tarantool development patches archive
 help / color / mirror / Atom feed
* [tarantool-patches] [PATCH v1] gitlab-ci: add static build
@ 2019-08-20  8:58 Alexander V. Tikhonov
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander V. Tikhonov @ 2019-08-20  8:58 UTC (permalink / raw)
  To: Alexander Turenko; +Cc: Alexander V. Tikhonov, tarantool-patches

Added static build using Dockerfile on Centos 7 for release
commit criteria only. Added the cleanup for cmake generating
CMakeCache.txt files and CMakeFiles directories to avoid of
cmake localy created setup failing inside the docker after
the whole tarantool path was copied into it. Added testing
into the static build, running only when RUN_TESTS environment
variable set to non empty value, used in gitlab-ci job to run
the testing after the build.

Closes #3668
---

Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-3668-static-build-full-ci
Issue: https://github.com/tarantool/tarantool/issues/3668

 .gitlab-ci.yml         | 13 +++++++++++++
 .gitlab.mk             |  7 +++++++
 Dockerfile.staticbuild | 12 ++++++++++++
 3 files changed, 32 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a7b2b3804..1733c7f75 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -326,3 +326,16 @@ debian_10:
     DIST: 'buster'
   script:
     - ${GITLAB_MAKE} package
+
+static_build:
+ only:
+ refs:
+ - master
+ - /^.*-full-ci$/
+ stage: test
+ tags:
+ - deploy
+ variables:
+ RUN_TESTS: 'ON'
+ script:
+ - ${GITLAB_MAKE} static_build
diff --git a/.gitlab.mk b/.gitlab.mk
index 7199adf94..cb66df4c2 100644
--- a/.gitlab.mk
+++ b/.gitlab.mk
@@ -105,3 +105,10 @@ vms_shutdown:
 package: git_submodule_update
 	git clone https://github.com/packpack/packpack.git packpack
 	PACKPACK_EXTRA_DOCKER_RUN_PARAMS='--network=host' ./packpack/packpack
+
+# ############
+# Static build
+# ############
+
+static_build:
+	docker build --network=host -f Dockerfile.staticbuild .
diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild
index 6a784990b..0ad84e789 100644
--- a/Dockerfile.staticbuild
+++ b/Dockerfile.staticbuild
@@ -78,6 +78,12 @@ RUN set -x && \
     git submodule init && \
     git submodule update
 
+WORKDIR /tarantool
+
+RUN set -x && \
+    find . -name 'CMakeFiles' -type d -exec rm -rf {} + && \
+    find . -name 'CMakeCache.txt' -type f -delete
+
 RUN pip install -r /tarantool/test-run/requirements.txt
 
 RUN set -x \
@@ -91,4 +97,10 @@ RUN set -x \
 
 RUN cd /tarantool && make install
 
+ARG RUN_TESTS
+RUN [ -n ${RUN_TESTS} ] && \
+ set -x && \
+ cd test && \
+ /usr/bin/python test-run.py --force
+
 ENTRYPOINT /bin/bash
-- 
2.17.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [tarantool-patches] [PATCH v1] gitlab-ci: add static build
@ 2019-08-20  9:32 Alexander V. Tikhonov
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander V. Tikhonov @ 2019-08-20  9:32 UTC (permalink / raw)
  To: Alexander Turenko; +Cc: Alexander V. Tikhonov, tarantool-patches

Added static build using Dockerfile on Centos 7 for release
commit criteria only. Added the cleanup for cmake generating
CMakeCache.txt files and CMakeFiles directories to avoid of
cmake localy created setup failing inside the docker after
the whole tarantool path was copied into it. Added testing
into the static build, running only when RUN_TESTS environment
variable set to non empty value, used in gitlab-ci job to run
the testing after the build.

Closes #3668
---

Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-3668-static-build-full-ci
Issue: https://github.com/tarantool/tarantool/issues/3668

 .gitlab-ci.yml         | 13 +++++++++++++
 .gitlab.mk             |  7 +++++++
 Dockerfile.staticbuild | 12 ++++++++++++
 3 files changed, 32 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a7b2b3804..f160c276b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -326,3 +326,16 @@ debian_10:
     DIST: 'buster'
   script:
     - ${GITLAB_MAKE} package
+
+static_build:
+  only:
+    refs:
+      - master
+      - /^.*-full-ci$/
+  stage: test
+  tags:
+    - deploy
+  variables:
+    RUN_TESTS: 'ON'
+  script:
+    - ${GITLAB_MAKE} static_build
diff --git a/.gitlab.mk b/.gitlab.mk
index 7199adf94..cb66df4c2 100644
--- a/.gitlab.mk
+++ b/.gitlab.mk
@@ -105,3 +105,10 @@ vms_shutdown:
 package: git_submodule_update
 	git clone https://github.com/packpack/packpack.git packpack
 	PACKPACK_EXTRA_DOCKER_RUN_PARAMS='--network=host' ./packpack/packpack
+
+# ############
+# Static build
+# ############
+
+static_build:
+	docker build --network=host -f Dockerfile.staticbuild .
diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild
index 6a784990b..679cce560 100644
--- a/Dockerfile.staticbuild
+++ b/Dockerfile.staticbuild
@@ -78,6 +78,12 @@ RUN set -x && \
     git submodule init && \
     git submodule update
 
+WORKDIR /tarantool
+
+RUN set -x && \
+    find . -name 'CMakeFiles' -type d -exec rm -rf {} + && \
+    find . -name 'CMakeCache.txt' -type f -delete
+
 RUN pip install -r /tarantool/test-run/requirements.txt
 
 RUN set -x \
@@ -91,4 +97,10 @@ RUN set -x \
 
 RUN cd /tarantool && make install
 
+ARG RUN_TESTS
+RUN [ -n ${RUN_TESTS} ] && \
+    set -x && \
+    cd test && \
+    /usr/bin/python test-run.py --force
+
 ENTRYPOINT /bin/bash
-- 
2.17.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [tarantool-patches] [PATCH v1] gitlab-ci: add static build
@ 2019-08-16  9:55 Alexander V. Tikhonov
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander V. Tikhonov @ 2019-08-16  9:55 UTC (permalink / raw)
  To: Alexander Turenko; +Cc: Alexander V. Tikhonov, tarantool-patches

Added static build using Dockerfile on Centos 7 for release
commit criteria only. Also cleaned up the Dockerfile from
duplicating code and added the cleanup for cmake generating
CMakeCache.txt files and CMakeFiles directories to avoid of
cmake localy created setup failing inside the docker after
the whole tarantool path was copied into it. Added testing
into the staic build, running only when RUN_TESTS environment
variable set to non empty value, used in gitlab-ci job to run
the testing after the build.

Closes #3668
---

Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-3668-static-build-full-ci
Issue: https://github.com/tarantool/tarantool/issues/3668

 .gitlab-ci.yml         | 13 +++++++++++++
 .gitlab.mk             |  7 +++++++
 Dockerfile.staticbuild | 19 ++++++++++++-------
 3 files changed, 32 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a7b2b3804..f160c276b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -326,3 +326,16 @@ debian_10:
     DIST: 'buster'
   script:
     - ${GITLAB_MAKE} package
+
+static_build:
+  only:
+    refs:
+      - master
+      - /^.*-full-ci$/
+  stage: test
+  tags:
+    - deploy
+  variables:
+    RUN_TESTS: 'ON'
+  script:
+    - ${GITLAB_MAKE} static_build
diff --git a/.gitlab.mk b/.gitlab.mk
index 7199adf94..cb66df4c2 100644
--- a/.gitlab.mk
+++ b/.gitlab.mk
@@ -105,3 +105,10 @@ vms_shutdown:
 package: git_submodule_update
 	git clone https://github.com/packpack/packpack.git packpack
 	PACKPACK_EXTRA_DOCKER_RUN_PARAMS='--network=host' ./packpack/packpack
+
+# ############
+# Static build
+# ############
+
+static_build:
+	docker build --network=host -f Dockerfile.staticbuild .
diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild
index 6a784990b..195274d54 100644
--- a/Dockerfile.staticbuild
+++ b/Dockerfile.staticbuild
@@ -38,8 +38,9 @@ RUN yum -y install ncurses-static readline-static zlib-static pcre-static glibc-
 
 RUN yum -y install python-devel python-pip
 
+WORKDIR /
+
 RUN set -x && \
-    cd / && \
     curl -O -L https://www.openssl.org/source/openssl-1.1.0h.tar.gz && \
     tar -xvf openssl-1.1.0h.tar.gz && \
     cd openssl-1.1.0h && \
@@ -47,7 +48,6 @@ RUN set -x && \
     make && make install
 
 RUN set -x && \
-    cd / && \
     git clone https://github.com/curl/curl.git && \
     cd curl && \
     git checkout curl-7_59_0 && \
@@ -56,7 +56,6 @@ RUN set -x && \
     make -j && make install
 
 RUN set -x && \
-    cd / && \
     wget http://download.icu-project.org/files/icu4c/62.1/icu4c-62_1-src.tgz && \
     tar -xvf icu4c-62_1-src.tgz && \
     cd icu/source && \
@@ -64,7 +63,6 @@ RUN set -x && \
     make && make install
 
 RUN set -x && \
-    cd / && \
     LD_LIBRARY_PATH=/usr/local/lib64 curl -O -L http://download.savannah.nongnu.org/releases/libunwind/libunwind-1.3-rc1.tar.gz && \
     tar -xvf libunwind-1.3-rc1.tar.gz && \
     cd libunwind-1.3-rc1 && \
@@ -72,11 +70,12 @@ RUN set -x && \
     make && make install
 
 COPY . /tarantool
+WORKDIR /tarantool
 
 RUN set -x && \
-    cd tarantool && \
-    git submodule init && \
-    git submodule update
+    git submodule update --init && \
+    find . -name 'CMakeFiles' -type d -exec rm -rf {} + && \
+    find . -name 'CMakeCache.txt' -type f -delete
 
 RUN pip install -r /tarantool/test-run/requirements.txt
 
@@ -91,4 +90,10 @@ RUN set -x \
 
 RUN cd /tarantool && make install
 
+ARG RUN_TESTS
+RUN [ -n ${RUN_TESTS} ] && \
+    set -x && \
+    cd test && \
+    /usr/bin/python test-run.py --force
+
 ENTRYPOINT /bin/bash
-- 
2.17.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [tarantool-patches] [PATCH v1] gitlab-ci: add static build
@ 2019-08-09  4:32 Alexander V. Tikhonov
  0 siblings, 0 replies; 4+ messages in thread
From: Alexander V. Tikhonov @ 2019-08-09  4:32 UTC (permalink / raw)
  To: Alexander Turenko; +Cc: Alexander V. Tikhonov, tarantool-patches

Added static build using Dockerfile on Centos 7 for release
commit criteria only. Also cleaned up the Dockerfile from
duplicating code and added the cleanup for cmake generating
CMakeCache.txt files and CMakeFiles directories to avoid of
cmake localy created setup failing inside the docker after
the whole tarantool path was copied into it. Added testing
into the staic build, running only when RUN_TESTS environment
variable set to non empty value, used in gitlab-ci job to run
the testing after the build.

Closes #3668
---

Github: https://github.com/tarantool/tarantool/tree/avtikhon/gh-3668-static-build-full-ci
Issue: https://github.com/tarantool/tarantool/issues/3668

 .gitlab-ci.yml         | 13 ++++++++++
 .gitlab.mk             |  7 +++++
 Dockerfile.staticbuild | 58 ++++++++++++++++++++++++------------------
 3 files changed, 53 insertions(+), 25 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a7b2b3804..f160c276b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -326,3 +326,16 @@ debian_10:
     DIST: 'buster'
   script:
     - ${GITLAB_MAKE} package
+
+static_build:
+  only:
+    refs:
+      - master
+      - /^.*-full-ci$/
+  stage: test
+  tags:
+    - deploy
+  variables:
+    RUN_TESTS: 'ON'
+  script:
+    - ${GITLAB_MAKE} static_build
diff --git a/.gitlab.mk b/.gitlab.mk
index 7199adf94..cb66df4c2 100644
--- a/.gitlab.mk
+++ b/.gitlab.mk
@@ -105,3 +105,10 @@ vms_shutdown:
 package: git_submodule_update
 	git clone https://github.com/packpack/packpack.git packpack
 	PACKPACK_EXTRA_DOCKER_RUN_PARAMS='--network=host' ./packpack/packpack
+
+# ############
+# Static build
+# ############
+
+static_build:
+	docker build --network=host -f Dockerfile.staticbuild .
diff --git a/Dockerfile.staticbuild b/Dockerfile.staticbuild
index 6a784990b..2ceff12ca 100644
--- a/Dockerfile.staticbuild
+++ b/Dockerfile.staticbuild
@@ -3,8 +3,8 @@ FROM centos:7
 RUN yum install -y epel-release
 RUN yum install -y yum install https://centos7.iuscommunity.org/ius-release.rpm
 
-RUN set -x \
-    && yum -y install \
+RUN set -x && \
+    yum -y install \
         libstdc++ \
         libstdc++-static \
         readline \
@@ -19,8 +19,8 @@ RUN set -x \
         zip \
         unzip \
         libunwind \
-        libcurl \
-    && yum -y install \
+        libcurl && \
+    yum -y install \
         perl \
         gcc-c++ \
         cmake \
@@ -32,14 +32,20 @@ RUN set -x \
         autoconf \
         automake \
         libtool \
-        wget
-
-RUN yum -y install ncurses-static readline-static zlib-static pcre-static glibc-static
+        wget && \
+    yum -y install \
+        ncurses-static \
+        readline-static \
+        zlib-static \
+        pcre-static \
+        glibc-static && \
+    yum -y install \
+        python-devel \
+        python-pip
 
-RUN yum -y install python-devel python-pip
+WORKDIR /
 
 RUN set -x && \
-    cd / && \
     curl -O -L https://www.openssl.org/source/openssl-1.1.0h.tar.gz && \
     tar -xvf openssl-1.1.0h.tar.gz && \
     cd openssl-1.1.0h && \
@@ -47,7 +53,6 @@ RUN set -x && \
     make && make install
 
 RUN set -x && \
-    cd / && \
     git clone https://github.com/curl/curl.git && \
     cd curl && \
     git checkout curl-7_59_0 && \
@@ -56,7 +61,6 @@ RUN set -x && \
     make -j && make install
 
 RUN set -x && \
-    cd / && \
     wget http://download.icu-project.org/files/icu4c/62.1/icu4c-62_1-src.tgz && \
     tar -xvf icu4c-62_1-src.tgz && \
     cd icu/source && \
@@ -64,7 +68,6 @@ RUN set -x && \
     make && make install
 
 RUN set -x && \
-    cd / && \
     LD_LIBRARY_PATH=/usr/local/lib64 curl -O -L http://download.savannah.nongnu.org/releases/libunwind/libunwind-1.3-rc1.tar.gz && \
     tar -xvf libunwind-1.3-rc1.tar.gz && \
     cd libunwind-1.3-rc1 && \
@@ -72,23 +75,28 @@ RUN set -x && \
     make && make install
 
 COPY . /tarantool
+WORKDIR /tarantool
 
 RUN set -x && \
-    cd tarantool && \
-    git submodule init && \
-    git submodule update
+    git submodule update --init && \
+    find . -name 'CMakeFiles' -type d -exec rm -rf {} + && \
+    find . -name 'CMakeCache.txt' -type f -delete
 
-RUN pip install -r /tarantool/test-run/requirements.txt
+RUN pip install -r test-run/requirements.txt
 
-RUN set -x \
-    && (cd /tarantool; \
-       cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
-             -DENABLE_DIST:BOOL=ON \
-             -DBUILD_STATIC=ON \
-             -DOPENSSL_USE_STATIC_LIBS=ON \
-             .) \
-    && make -C /tarantool -j
+RUN set -x && \
+    cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo \
+        -DENABLE_DIST:BOOL=ON \
+        -DBUILD_STATIC=ON \
+        -DOPENSSL_USE_STATIC_LIBS=ON \
+        . && \
+    make -j && \
+    make install
 
-RUN cd /tarantool && make install
+ARG RUN_TESTS
+RUN [ -n ${RUN_TESTS} ] && \
+    set -x && \
+    cd test && \
+    /usr/bin/python test-run.py --force
 
 ENTRYPOINT /bin/bash
-- 
2.17.1

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-08-20  9:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-20  8:58 [tarantool-patches] [PATCH v1] gitlab-ci: add static build Alexander V. Tikhonov
  -- strict thread matches above, loose matches on Subject: below --
2019-08-20  9:32 Alexander V. Tikhonov
2019-08-16  9:55 Alexander V. Tikhonov
2019-08-09  4:32 Alexander V. Tikhonov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox