Skip to content

Commit

Permalink
http2d: Skip on Unit Tests build and DEB/RPM builds
Browse files Browse the repository at this point in the history
  • Loading branch information
liviuchircu committed Mar 27, 2024
1 parent e939f09 commit 37555f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packaging/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ BUILD_MODULE_PATHS = $(foreach pkg,$(BUILD_MODPKG_LIST),$($(pkg)_MOD_PATH))

## modules not in the "main" package or unstable modules that we never want to build
## Everything we don't specifically exclude here will get built into the primary package
NONCORE_MODULES = $(ALL_MODULES) osp launch_darkly
NONCORE_MODULES = $(ALL_MODULES) osp launch_darkly http2d

ifeq (cc, $(CC))
CC = gcc
Expand Down
2 changes: 1 addition & 1 deletion packaging/redhat_fedora/opensips.spec
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
%global _with_wolfssl 1
%endif

%global EXCLUDE_MODULES %{!?_with_auth_jwt:auth_jwt} %{!?_with_cachedb_cassandra:cachedb_cassandra} %{!?_with_cachedb_couchbase:cachedb_couchbase} %{!?_with_cachedb_mongodb:cachedb_mongodb} %{!?_with_cachedb_redis:cachedb_redis} %{!?_with_db_oracle:db_oracle} %{!?_with_osp:osp} %{!?_with_sngtc:sngtc} %{!?_with_aaa_diameter:aaa_diameter} %{?_without_aaa_radius:aaa_radius} %{?_without_db_perlvdb:db_perlvdb} %{?_without_snmpstats:snmpstats} %{!?_with_wolfssl:tls_wolfssl} launch_darkly
%global EXCLUDE_MODULES %{!?_with_auth_jwt:auth_jwt} %{!?_with_cachedb_cassandra:cachedb_cassandra} %{!?_with_cachedb_couchbase:cachedb_couchbase} %{!?_with_cachedb_mongodb:cachedb_mongodb} %{!?_with_cachedb_redis:cachedb_redis} %{!?_with_db_oracle:db_oracle} %{!?_with_osp:osp} %{!?_with_sngtc:sngtc} %{!?_with_aaa_diameter:aaa_diameter} %{?_without_aaa_radius:aaa_radius} %{?_without_db_perlvdb:db_perlvdb} %{?_without_snmpstats:snmpstats} %{!?_with_wolfssl:tls_wolfssl} launch_darkly http2d

Summary: Very fast and configurable SIP server
Name: opensips
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/do_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -e
. $(dirname $0)/build.conf.sub

EXCLUDE_MODULES="db_oracle osp sngtc cachedb_cassandra cachedb_couchbase \
cachedb_mongodb auth_jwt event_kafka aaa_diameter launch_darkly"
cachedb_mongodb auth_jwt event_kafka aaa_diameter launch_darkly http2d"
if [ ! -z "${EXCLUDE_MODULES_ADD}" ]
then
EXCLUDE_MODULES="${EXCLUDE_MODULES} ${EXCLUDE_MODULES_ADD}"
Expand Down

0 comments on commit 37555f8

Please sign in to comment.