Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AZP: do not include libjucx into release packages. #6440

Merged
merged 1 commit into from
Mar 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion buildlib/az-distro-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
./autogen.sh
mkdir pkg-build
cd pkg-build
../contrib/configure-release --with-cuda
../contrib/configure-release --with-cuda --with-java=no
displayName: Configure
- bash: |
Expand Down
2 changes: 1 addition & 1 deletion buildlib/azure-pipelines-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ stages:
- bash: |
set -eE
gcc --version
./contrib/configure-release
./contrib/configure-release --with-java=no
./contrib/buildrpm.sh -s -t -b
displayName: Build tarball
Expand Down
2 changes: 1 addition & 1 deletion debian/rules.in
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
dh $@

override_dh_auto_configure:
@top_top_srcdir@/contrib/configure-release --prefix=/usr --enable-examples
@top_top_srcdir@/contrib/configure-release --prefix=/usr --enable-examples --with-java=no
chmod +x debian/rules

override_dh_shlibdeps:
Expand Down