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
2fb9e93c
Commit
2fb9e93c
authored
Sep 11, 2019
by
somdoron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
problem: ci doesn't build with nss
Solution: add an nss build to CI
parent
9be83349
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
.travis.yml
.travis.yml
+7
-0
ci_build.sh
ci_build.sh
+4
-0
No files found.
.travis.yml
View file @
2fb9e93c
...
...
@@ -44,6 +44,13 @@ matrix:
-
env
:
BUILD_TYPE=default CURVE=tweetnacl IPv6=ON
os
:
linux
dist
:
precise
-
env
:
BUILD_TYPE=default CURVE=tweetnacl USE_NSS=yes
os
:
linux
dist
:
precise
addons
:
apt
:
packages
:
-
libnss3-dev
-
env
:
BUILD_TYPE=coverage CURVE=tweetnacl DRAFT=enabled
os
:
linux
addons
:
...
...
ci_build.sh
View file @
2fb9e93c
...
...
@@ -24,6 +24,10 @@ if [ $BUILD_TYPE == "default" ]; then
CONFIG_OPTS+
=(
"LDFLAGS=-fuse-ld=gold"
)
fi
if
[
$USE_NSS
==
"yes"
]
;
then
CONFIG_OPTS+
=(
"--with-nss"
)
fi
if
[
-z
$CURVE
]
;
then
CONFIG_OPTS+
=(
"--disable-curve"
)
elif
[
$CURVE
==
"libsodium"
]
;
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