Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
git2
Overview
Overview
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
git2
Commits
a44f2e9e
Commit
a44f2e9e
authored
Jan 02, 2013
by
Vicent Marti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Try it like this...
parent
e229c048
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
.travis.yml
+4
-2
CMakeLists.txt
+5
-7
No files found.
.travis.yml
View file @
a44f2e9e
# Travis-CI Build for libgit2
# see travis-ci.org for details
# As CMake is not officially supported we use erlang VMs
language
:
c
compiler
:
...
...
@@ -26,8 +28,8 @@ script:
-
mkdir _build
-
cd _build
-
cmake .. -DCMAKE_INSTALL_PREFIX=../_install $OPTIONS
-
make submodules
all
-
./libgit2_clar
-
cmake --build . --target inst
all
-
ctest -V .
# Run Tests
after_script
:
...
...
CMakeLists.txt
View file @
a44f2e9e
...
...
@@ -231,13 +231,6 @@ INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/libgit2.pc DESTINATION ${LIB_INSTALL_D
INSTALL
(
DIRECTORY include/git2 DESTINATION
${
INCLUDE_INSTALL_DIR
}
)
INSTALL
(
FILES include/git2.h DESTINATION
${
INCLUDE_INSTALL_DIR
}
)
ADD_CUSTOM_TARGET
(
submodules
COMMAND git submodule update --init tests-clar/clar
WORKING_DIRECTORY
${
CMAKE_CURRENT_SOURCE_DIR
}
)
# Tests
IF
(
BUILD_CLAR
)
FIND_PACKAGE
(
PythonInterp REQUIRED
)
...
...
@@ -254,6 +247,11 @@ IF (BUILD_CLAR)
SET(CMAKE_C_FLAGS "
${
CMAKE_C_FLAGS
}
-Wno-missing-prototypes
")
ADD_CUSTOM_COMMAND(
OUTPUT
${
CLAR_PATH
}
/clar/clar.c
COMMAND git submodule update --init tests-clar/clar
)
ADD_CUSTOM_COMMAND(
OUTPUT
${
CLAR_PATH
}
/clar.suite
COMMAND
${
PYTHON_EXECUTABLE
}
clar/generate.py .
DEPENDS
${
SRC_TEST
}
...
...
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