Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Beyond Protocol
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor 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
Beyond AKA
Beyond Protocol
Commits
b884ecef
Commit
b884ecef
authored
3 years ago
by
Nicolas Pope
Browse files
Options
Downloads
Patches
Plain Diff
Pack only on tag pipelines
parent
c31446bf
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+8
-2
8 additions, 2 deletions
.gitlab-ci.yml
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
src/config.cpp
+0
-10
0 additions, 10 deletions
src/config.cpp
with
9 additions
and
13 deletions
.gitlab-ci.yml
+
8
−
2
View file @
b884ecef
...
...
@@ -30,6 +30,7 @@ code_quality:
only
:
-
main
-
merge_requests
-
tags
tags
:
-
docker
script
:
...
...
@@ -45,6 +46,7 @@ linux:build:
only
:
-
main
-
merge_requests
-
tags
stage
:
build
tags
:
...
...
@@ -73,6 +75,7 @@ linux:test:
only
:
-
main
-
merge_requests
-
tags
stage
:
test
tags
:
...
...
@@ -93,6 +96,7 @@ linux:valgrind:
only
:
-
main
-
merge_requests
-
tags
stage
:
test
tags
:
...
...
@@ -111,7 +115,7 @@ linux:valgrind:
linux:pack
:
only
:
-
main
-
tags
stage
:
pack
tags
:
...
...
@@ -135,6 +139,7 @@ windows:build:
only
:
-
main
-
merge_requests
-
tags
stage
:
build
tags
:
...
...
@@ -162,6 +167,7 @@ windows:test:
only
:
-
main
-
merge_requests
-
tags
stage
:
test
...
...
@@ -181,7 +187,7 @@ windows:test:
windows:pack
:
only
:
-
main
-
tags
stage
:
pack
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
1
View file @
b884ecef
...
...
@@ -3,7 +3,7 @@ include (CheckIncludeFile)
include
(
CheckIncludeFileCXX
)
include
(
CheckFunctionExists
)
if
(
NOT FTL_VERSION
)
if
(
NOT FTL_VERSION
OR FTL_VERSION STREQUAL
"%CI_COMMIT_TAG%"
)
set
(
FTL_VERSION 0.0.1
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
src/config.cpp
deleted
100644 → 0
+
0
−
10
View file @
c31446bf
#include
<ftl/protocol/config.h>
const
char
*
FTL_BRANCH
=
"main"
;
const
char
*
FTL_VERSION_LONG
=
""
;
const
char
*
FTL_VERSION
=
""
;
const
int
FTL_VERSION_MAJOR
=
0
;
const
int
FTL_VERSION_MINOR
=
0
;
const
int
FTL_VERSION_PATCH
=
0
;
const
int
FTL_VERSION_COMMITS
=
0
;
const
char
*
FTL_VERSION_SHA1
=
""
;
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