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
099070c3
Commit
099070c3
authored
Mar 27, 2018
by
Luca Boccassi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Problem: clang-format Travis job broken
Solution: don't run configure
parent
8fb5b10d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
14 deletions
+13
-14
ci_build.sh
builds/cmake/ci_build.sh
+13
-1
ci_build.sh
ci_build.sh
+0
-13
No files found.
builds/cmake/ci_build.sh
View file @
099070c3
...
...
@@ -2,6 +2,19 @@
set
-x
cd
../..
# always install custom builds from dist
# to make sure that `make dist` doesn't omit any files required to build & test
if
[
-z
$DO_CLANG_FORMAT_CHECK
]
;
then
./autogen.sh
./configure
make
-j5
dist-gzip
V
=
$(
./version.sh
)
tar
-xzf
zeromq-
$V
.tar.gz
cd
zeromq-
$V
fi
mkdir
tmp
BUILD_PREFIX
=
$PWD
/tmp
...
...
@@ -35,7 +48,6 @@ elif [ $CURVE == "libsodium" ]; then
fi
# Build, check, and install from local source
cd
../..
mkdir
build_cmake
cd
build_cmake
if
[
"
$DO_CLANG_FORMAT_CHECK
"
-eq
"1"
]
;
then
...
...
ci_build.sh
View file @
099070c3
...
...
@@ -70,18 +70,5 @@ if [ $BUILD_TYPE == "default" ]; then
make
VERBOSE
=
1
-j5
distcheck
)
||
exit
1
else
# always install custom builds from dist
# to make sure that `make dist` doesn't omit any files required to build & test
# coverage, valgrind are special-case tests that aren't meant to be runnable from releases
if
[
${
BUILD_TYPE
}
!=
"coverage"
]
&&
[
${
BUILD_TYPE
}
!=
"valgrind"
]
;
then
./autogen.sh
./configure
make
-j5
dist-gzip
V
=
$(
./version.sh
)
tar
-xzf
zeromq-
$V
.tar.gz
cd
zeromq-
$V
fi
# start the actual build from inside the dist
cd
./builds/
${
BUILD_TYPE
}
&&
./ci_build.sh
fi
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