Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-stream
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap-stream
Commits
8231f1aa
Unverified
Commit
8231f1aa
authored
6 years ago
by
Kurotych Anatolii
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add travis (#10)
parent
b159eb39
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.travis.yml
+25
-0
25 additions, 0 deletions
.travis.yml
CMakeLists.txt
+3
-3
3 additions, 3 deletions
CMakeLists.txt
with
28 additions
and
3 deletions
.travis.yml
0 → 100644
+
25
−
0
View file @
8231f1aa
language
:
c
compiler
:
gcc
dist
:
xenial
notifications
:
email
:
false
before_install
:
-
git submodule init
-
git submodule update --recursive
script
:
-
mkdir build
-
cd build
-
cmake -DBUILD_DAP_STREAM_TESTS=ON ../
-
make
-
ctest --verbose
addons
:
apt
:
sources
:
-
ubuntu-toolchain-r-test
packages
:
-
libjson-c-dev
-
libev-dev
-
libmagic-dev
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
3
−
3
View file @
8231f1aa
project
(
libdap-stream C
)
project
(
libdap-stream C
)
cmake_minimum_required
(
VERSION
2.8
)
cmake_minimum_required
(
VERSION
3.0
)
if
(
NOT
(
${
SUBMODULES_NO_BUILD
}
MATCHES ON
))
if
(
NOT
(
${
SUBMODULES_NO_BUILD
}
MATCHES ON
))
set
(
SUBMODULES_NO_BUILD ON
)
set
(
SUBMODULES_NO_BUILD ON
)
...
@@ -10,10 +10,10 @@ if(NOT (${SUBMODULES_NO_BUILD} MATCHES ON))
...
@@ -10,10 +10,10 @@ if(NOT (${SUBMODULES_NO_BUILD} MATCHES ON))
add_subdirectory
(
libdap-stream-ch
)
add_subdirectory
(
libdap-stream-ch
)
endif
()
endif
()
#
if(BUILD_DAP_STREAM_TESTS)
if
(
BUILD_DAP_STREAM_TESTS
)
enable_testing
()
enable_testing
()
add_subdirectory
(
test
)
add_subdirectory
(
test
)
#
endif()
endif
()
add_subdirectory
(
session
)
add_subdirectory
(
session
)
add_subdirectory
(
stream
)
add_subdirectory
(
stream
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment