Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-proto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
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
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-proto
Compare revisions
36d7956b6eca506fb87096d8d50b6f4b820778b8 to 45d120f78f17986ba67c10b6a4a130e7fa60b34c
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
caosdb/src/caosdb-proto
Select target project
No results found
45d120f78f17986ba67c10b6a4a130e7fa60b34c
Select Git revision
Swap
Target
caosdb/src/caosdb-proto
Select target project
caosdb/src/caosdb-proto
1 result
36d7956b6eca506fb87096d8d50b6f4b820778b8
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
DOC: add caosdb.entity to docs
· 5403a8d9
Timm Fitschen
authored
3 years ago
5403a8d9
PIPELINE: create docs in main
· 45d120f7
Timm Fitschen
authored
3 years ago
45d120f7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+2
-1
2 additions, 1 deletion
.gitlab-ci.yml
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
doc/conf.py.in
+2
-0
2 additions, 0 deletions
doc/conf.py.in
proto/caosdb/CMakeLists.txt
+1
-0
1 addition, 0 deletions
proto/caosdb/CMakeLists.txt
with
6 additions
and
2 deletions
.gitlab-ci.yml
View file @
45d120f7
...
...
@@ -71,7 +71,8 @@ pages:
tags
:
[
docker
]
stage
:
deploy
only
:
-
web
refs
:
-
main
script
:
-
export GOPATH=/usr/local/go
-
export PATH=$PATH:$GOPATH/bin
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
View file @
45d120f7
...
...
@@ -20,7 +20,7 @@
cmake_minimum_required
(
VERSION 3.13
)
set
(
CAOSDB_PROTO_VERSION 0.0.1
)
set
(
CAOSDB_PROTO_VERSION 0.0.1
0
)
project
(
"caosdb-proto"
VERSION
${
CAOSDB_PROTO_VERSION
}
...
...
This diff is collapsed.
Click to expand it.
doc/conf.py.in
View file @
45d120f7
...
...
@@ -20,6 +20,8 @@
project = '@CMAKE_PROJECT_NAME@'
copyright = '2021 IndiScale GmbH'
author = 'Timm Fitschen'
version = '@CMAKE_PROJECT_VERSION@'
release = '@CMAKE_PROJECT_VERSION@'
rst_prolog = """
.. |PROJECT_NAME| replace:: @CMAKE_PROJECT_NAME@
...
...
This diff is collapsed.
Click to expand it.
proto/caosdb/CMakeLists.txt
View file @
45d120f7
...
...
@@ -20,6 +20,7 @@
set
(
CAOSDB_API_PACKAGES
caosdb.info.v1alpha1
caosdb.entity.v1alpha1
)
# pass variable to parent scope
...
...
This diff is collapsed.
Click to expand it.