- Aug 09, 2021
-
-
* Makefile (portable-release-tarball): Do expose SSL_CERT_FILE directly; expose SSL_CERT_DIR as /etc/ssl/certs instead, which is where GnuTLS (hence wget) looks. Change-Id: If827b33134a0846317efc0034ed27bd122334e23
-
- Jul 06, 2021
-
-
Maxim Cournoyer authored
* Makefile (TAR_REPRODUCIBILITY_OPTIONS): New variable. $(RELEASE_TARBALL_FILENAME): Invoke tar with the above options. Invoke gzip with '--no-name', to prevent keeping the file name and time stamp. Change-Id: I64cac307c69cbfbdb7132b1f567f1c3f18baad8c
-
- Jun 28, 2021
-
-
Maxim Cournoyer authored
Use the recommended exec syntax for the CMD directive in the Dockerfiles, which invokes the command directly rather than through an intermediate shell. Also provide the -i option, but conditionally as Docker checks if there is a real TTY to connect to, which is not the case in Jenkins. * scripts/make-packaging-target.py (PACKAGE_*_DOCKER_RUN_COMMAND) [IS_SHELL_INTERACTIVE]: Conditionally provide the '-i' option. (package-*-interactive) <DOCKER_EXTRA_ARGS>: Remove target-specific variable. (DOCKER_EXTRA_ARGS): Move/rename variable to ... * Makefile (DOCKER_RUN_EXTRA_ARGS): ... here/this. (IS_SHELL_INTERACTIVE): New variable. The rest of this change was automated using the command: $ git grep -l CMD | xargs sed -i -E 's,CMD (.*)$,CMD ["\1"],g' Change-Id: I93ba9ad8115541a7c7f02421384ae01a5b0650ad
-
- May 25, 2021
-
-
Maxim Cournoyer authored
When a .tarball-version file containing the version string is present, it is taken for granted that the source tarball is present. This allows to lift the requirement on a Git checkout to use the source tarball. This makes it easy and cheap to sync this tarball and accompanying .tarball-version file across different Jenkins agents to distribute the packaging jobs, bring the total build time from about 1 h 40 to 40 minutes. * Makefile (TARBALL_VERSION): New variable. When defined, do not do not invoke Git to derive the version string, simply use it. [RELEASE_TARBALL_FILENAME]: Do not compute prerequisites when TARBALL_VERSION is defined; assume the tarball is present. * .gitignore: Ignore .tarball-version. * Jenkinsfile: (Generate release tarball): Generate a .tarball-version file, and stash it along the release tarball. Explicit this should run on a 'guix' agent. (Build packages): Forward to any 'linux-builder' agent, clean the workspace, unstash and extract the tarball and build. GitLab: jami-packaging#98 Change-Id: I13088b75c9ccd5166662a84b7c5f8d4e8b7b65da
-
Maxim Cournoyer authored
The phony tarball-producing targets will now always clear the tarballs.manifest file before generating a new release tarball, ensuring it doesn't contain stale information. A new 'portable-release-tarball' target is also added to offer an easy to use target that was previously implemented ad-hoc in the CI. Move this logic here as a portable release tarball is useful for packagers wanting to test locally with the various supported platforms. The Jenkinsfile now makes use of it. * Makefile (daemon/contrib/native/Makefile): New target. (tarballs.manifest): Add the above target as a prerequisite and remove invocation to bootstrap script. Invoke make with --no-print-directory to prevent entering/leaving directory messages from appearing in the output (it's supposed to be on when using --silent, but when the make invocation is nested, it doesn't seem to be the case). (release-tarball): Also clear the tarballs.manifest when invoked. (purge-release-tarballs, portable-release-tarball): New targets. * guix/minimal-manifest.scm: New file. * Jenkinsfile ('Generate release tarball): Use it to spawn the container used to build the release tarball. Also expose /usr/bin/env in the container. Use the new 'portable-release-tarball' target to simplify things. Fix the shebang line; it needs to be the first line of the script. GitLab: jami-packaging#98 Change-Id: I3b55e25933108ae9930bc9fcc867f9fa51d796f2
-
- May 04, 2021
-
-
This makes the current 'jami-all' package the one used for the one-click install package. * packaging/rules/debian/rules (OCI_INSTALL_DIR): New variable. (override_dh_auto_install): Extend rule to install the files of the jami-libqt package. Do not include the jami-gnome in jami-all. * packaging/rules/debian/control (jami-all): Update description. * packaging/rules/debian-one-click-install: Delete directory. * packaging/rules/debian-one-click-install/jami-all.postinst: Move to ... * packaging/rules/debian/jami-all.postinst: ... here. * scripts/make-packaging-target.py: Remove all OCI-specific targets. * scripts/deploy-packages.sh (package_deb) [jami-all]: Do not add package to the apt repository. [manual-download]: Look for the jami-all package from the main distribution directory, not in a '_oci' suffixed version. GitLab: jami-client-qt#263 Change-Id: I4cacf26355c767d1c77b1ce478b184023481b674
-
- May 01, 2021
-
-
Change-Id: I983607f226476c32a6862a41b55ca1b13a2c010b
-
- Mar 31, 2021
-
-
Maxim Cournoyer authored
* Makefile (release-tarball) <git-archive>: Add the client-qt directory to the release tarball. Change-Id: I994e7a448ddae36821ef4dcca42a462911985089
-
Maxim Cournoyer authored
Change-Id: I68fb4f106f25bc10a80fab1f3e10f9e2702761b2
-
- Feb 26, 2021
-
-
Maxim Cournoyer authored
Previously, the only way to ensure a clean release tarball was to start from scratch, fetching all the contrib sources from the network (> 1 GiB). This change leverages the new 'list-tarballs' targets of the contrib build system to allow reusing the relevant tarballs from the cache when available, which translates to faster builds. It also constructs the pristine source release archive via git-archive, which guards against including unwanted files. Since only the required tarballs are included in the source archive, its size is reduced from 1.4 GiB to 72 MiB. GitLab: jami-packaging#55 Change-Id: I4993b269f3b97f6a4b6b8592aa8b5f4eb5448943
-
Maxim Cournoyer authored
Some tarballs are expensive to generate. It's useful to be able to reuse those. The cleanup is moved to the clean target. Change-Id: Ibe2b379be60dbb4b5c4eea9f0eeae4be84ccdb16
-
Maxim Cournoyer authored
This hack is no longer necessary. The Jenkins nodes are running Docker 19. Change-Id: I8e41e1295a49ebe48b2fca9fa6c91158f49f16c9
-
Maxim Cournoyer authored
Debian 9 packaging is removed as well, not because it is EOL, but because it doesn't have the runtime required to run Jami (the daemon requires C++17 but GCC 6 in Debian stretch doesn't support it). A 'list-package-targets' Make target is also added; it'll be used by the CI. Change-Id: I87a26b14ea48bd17ebccb536f23a5f2637f28743
-
Maxim Cournoyer authored
Rename Makefile.packaging to Makefile, as it's the only one. Makefile.packaging symlinks to it, to preserve backward compatibility for now. Change-Id: I136d01342e9779e9bb7a21b22dd10f54b6ac7064
-
- Feb 05, 2021
-
-
Sébastien Blin authored
This reverts commit c59ff3b3. Reason for revert: Breaks packaging on debian Change-Id: Ia29ff90d7c2dba83d2831f5f81f004532f455311
-
- Feb 03, 2021
-
-
Change-Id: I0df659931adcd5d76912e3fbe2e48eeb4dcb32c1
-
- Dec 09, 2020
-
-
Amin Bandali authored
Change-Id: I5b24b809cec3763c44808fe9f056cba862336531
-
- Nov 18, 2020
-
-
Sébastien Blin authored
Change-Id: I56de10fdfb39d14405cb0e502c472b4dbc112dc0
-
- Oct 22, 2020
-
-
Fix build for opensuse 15.1 Add build for opensuse 15.2 and tumbleweed Change-Id: I561a6f48dc4674efd0a9e83a20bb238d476d29a6
-
- Oct 19, 2020
-
-
Sébastien Blin authored
Change-Id: I6fe7da475e0004278382c4d5a996568557829bf4
-
- Oct 09, 2020
-
-
Sébastien Blin authored
Change-Id: I7f28e39381f33bd42f145e116a0cdc5db9ef10e7
-
- Apr 28, 2020
-
-
Sébastien Blin authored
Change-Id: Ida94131950baf124354b4cb5a521271aaeddee73
-
- Apr 17, 2020
-
-
Sébastien Blin authored
Change-Id: Ic5619dec5e68a18519e7bf64d43a82150c91f73e
-
- Jan 13, 2020
-
-
Adds: * Debian 9 armhf * Debian 9 arm64 * Debian 10 armhf * Debian 10 arm64 * Raspbian 10 armhf * The One Click Install (oci) version for all this items This commit also fix the --generate option in the generated makefile by scripts/make-packaging-target.py and remove the --architecture option there because was not used at any part of the script. Because our builder docker can not docker build with ARM we implemented a workaround called dirty qemu-static is documented and we have a issue to sovle it. The pipeline for packaging-deploy-gnulinux-generic got changed to add the support for the ARM architecture but the OCI build is not enabled because the build including the oci takes long (5 hours or plus). Warning: require companion changes in daemon (topic debian-arm) to ensure the right compilation flags Change-Id: I905bbd4660824670d7de836129886f3d7f1dc83b
-
- Nov 15, 2019
-
-
Change-Id: Iabb7c6a9e77949978ae2cad842440ab658ffbb4b
-
- Nov 14, 2019
-
-
Sébastien Blin authored
Change-Id: I1a4c53ac6a4ee6c16d755e52742eb098b8221a8d
-
- Nov 13, 2019
-
-
Sébastien Blin authored
This reverts commit 0c1951cc. Reason for revert: <INSERT REASONING HERE> Change-Id: I5e166d19f3b02e36b441dbd49d4b9f9ba2131d73
-
Sébastien Blin authored
Change-Id: If1edf81faac730c2de27245eb88bd96c7a157e7c
-
Sébastien Blin authored
This reverts commit 4ddaa819. Reason for revert: <INSERT REASONING HERE> Change-Id: I0073af7b97834b2f95de2b0d1238c7d1da1c7b4a
-
- Nov 12, 2019
-
-
Change-Id: Ib4f4cee7a3a4d1782001c12b53bd9324d6953b6a
-
- Nov 11, 2019
-
-
Fredy Pulido authored
This commit rename the tarball, debian, ubuntu and fedora packages. This commit also modify the debian post install script to add support our repositories for Debian 10 and Ubuntu 18.10 and 19.04 and create transition packages to ensure a proper nama transition in debian based distributions. Warning: when using reprepo to add the ring transition deb package this get into pool/main/j/jami. for now we think is a reprepo error because reads the Source: instead of Package: field. Change-Id: I47449a79c1a8bfd6ee0f3ffed618886f1dc1645a
-
- Nov 01, 2019
-
-
Change-Id: Ifabe4ca88973edb9cc58ce691ce659545f4edfc7
-
- Oct 31, 2019
-
-
Jean Squillari authored
Change-Id: I661245cb99f6b4468605ae781523581c90d93c4e
-
- May 01, 2019
-
-
Sébastien Blin authored
Change-Id: I31decc933d2ae103dc8eb6047f1c9c5ae4f67661
-
- Apr 29, 2019
-
-
Sébastien Blin authored
Change-Id: I44ff4485b68cc4ff5e1ad9504f9c065da5a48ba0 Gitlab: #599
-
- Apr 19, 2019
-
-
Sébastien Blin authored
Change-Id: I4953f10bce3bbecd960dbaa8edd8928992af7d2f Gitlab: #598
-
- Jan 02, 2019
-
-
Sébastien Blin authored
Change-Id: Ice5cba61bf3f7baa3d207ea269ffa4537378ae58
-
- Nov 21, 2018
-
-
Sébastien Blin authored
Change-Id: I8da650f1458234392907c33b3035fe01bf85d953
-
- Nov 08, 2018
-
-
Sébastien Blin authored
+ Also update necessary contribs for fedora (sqlite-devel and openssl-static) Change-Id: Ib9e41a5cbd0dff6ef0208e7bb582e5e4e238e011
-
- Aug 17, 2018
-
-
Hugo Lefeuvre authored
It has been decided that we would have different releases between website and apt repository. The version from the website would have debian revision -0 and the one from apt repositories -1. The main difference resides in the fact that the version from the website distributes a postinst script which installs key and apt source.list so that Ring gets automatically updated when installed via one click install. This is not the case with the one from apt repos. Change-Id: I7bbfdfa41b0133ebe93f16bc550aa437c8ddfa6a
-