Skip to content
Snippets Groups Projects
Commit 59ac093e authored by Sébastien Blin's avatar Sébastien Blin
Browse files

nightly

Change-Id: Ib0bb0985a396a9284229c79acc113a25c79c97bd
parent 519e16a3
No related branches found
No related tags found
No related merge requests found
......@@ -136,8 +136,14 @@ See https://wiki.savoirfairelinux.com/wiki/Jenkins.jami.net#Configuration_client
steps {
sh """git checkout ${params.CHANNEL}
git status
git reset --hard origin/nightly
git status
# Submodules are generally not managed by merging
git merge -X theirs --no-commit FETCH_HEAD || git add `git diff --name-status --diff-filter=U | awk '{print \$2}'`
git merge -X theirs --no-commit FETCH_HEAD || true
git status
git checkout FETCH_HEAD -- daemon lrc client-qt client-gnome lrc-gnome
git status
"""
}
}
......
client-gnome @ 2be304c9
Subproject commit d493e44ff3fd106456df85d0e73f6b3c08ecd38c
Subproject commit 2be304c9245d1be5762da292068dd591a336250c
client-qt @ bef42fb1
Subproject commit 83f68573324a453a6d26e025fd6439f175a79d1b
Subproject commit bef42fb1ce9b4cbd1418bae539d0ac8f75e8a590
daemon @ f6f8a837
Subproject commit 02c5cecd363a1ee25a914d72e243d7903e44969b
Subproject commit f6f8a83754351d640b90026d1c6b59b2b6ed1393
......@@ -13,6 +13,7 @@ RUN apt-get update && \
clang \
clang-tools \
software-properties-common \
libarchive-dev \
wget
# nodejs (more recent version needed for building libqt-jami)
......
lrc @ 0c88ebaf
Subproject commit 48db64cbcd3a8d7a12cad940694ce9239b8db576
Subproject commit 0c88ebafe0f640afd74c215533f9315f171e0d8d
......@@ -35,6 +35,10 @@ ifeq (debian_10,$(findstring debian_10, $(DISTRIBUTION)))
# Daemon's bundled libarchive does not build on Debian 10
BUNDLED_PKGS="--disable-libarchive"
endif
ifeq (ubuntu_18.04,$(findstring ubuntu_18.04, $(DISTRIBUTION)))
# Daemon's bundled libarchive does not build on Debian 10
BUNDLED_PKGS="--disable-libarchive"
endif
ifeq (raspbian_10_armhf,$(findstring raspbian_10_armhf, $(DISTRIBUTION)))
# Raspbian's yaml-cpp lib does not work properly
BUNDLED_PKGS="--enable-ffmpeg --enable-yaml-cpp"
......
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