Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
L
libzmq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
libzmq
Commits
5311aa9c
Commit
5311aa9c
authored
Oct 17, 2017
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: Travis does not build with NORM
Solution: install package and enable the build on some Linux jobs
parent
189b551b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
.travis.yml
.travis.yml
+4
-2
ci_build.sh
ci_build.sh
+4
-0
No files found.
.travis.yml
View file @
5311aa9c
...
...
@@ -41,7 +41,7 @@ matrix:
apt
:
packages
:
-
valgrind
-
env
:
BUILD_TYPE=default CURVE=libsodium GSSAPI=enabled PGM=enabled
-
env
:
BUILD_TYPE=default CURVE=libsodium GSSAPI=enabled PGM=enabled
NORM=enabled
os
:
linux
addons
:
apt
:
...
...
@@ -50,11 +50,12 @@ matrix:
key_url
:
'
http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key'
packages
:
-
libkrb5-dev
-
libnorm-dev
-
libpgm-dev
-
libsodium-dev
-
asciidoc
-
xmlto
-
env
:
BUILD_TYPE=default CURVE=libsodium DRAFT=enabled GSSAPI=enabled PGM=enabled
-
env
:
BUILD_TYPE=default CURVE=libsodium DRAFT=enabled GSSAPI=enabled PGM=enabled
NORM=enabled
os
:
linux
addons
:
apt
:
...
...
@@ -63,6 +64,7 @@ matrix:
key_url
:
'
http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key'
packages
:
-
libkrb5-dev
-
libnorm-dev
-
libpgm-dev
-
libsodium-dev
-
env
:
BUILD_TYPE=default CURVE=libsodium DRAFT=enabled
...
...
ci_build.sh
View file @
5311aa9c
...
...
@@ -44,6 +44,10 @@ if [ $BUILD_TYPE == "default" ]; then
CONFIG_OPTS+
=(
"--with-pgm=yes"
)
fi
if
[
-n
"
$NORM
"
]
&&
[
"
$NORM
"
==
"enabled"
]
;
then
CONFIG_OPTS+
=(
"--with-norm=yes"
)
fi
if
[
-z
$DRAFT
]
||
[
$DRAFT
==
"disabled"
]
;
then
CONFIG_OPTS+
=(
"--enable-drafts=no"
)
elif
[
$DRAFT
==
"enabled"
]
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment