Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Communications Backbone System
communications-backbone
Commits
266acc14
Commit
266acc14
authored
2 years ago
by
James Kirk
Browse files
Options
Download
Plain Diff
Merge branch 'gitlab-ci-testing' into 'dev'
Gitlab ci testing See merge request
!22
parents
808e48be
ab187640
Pipeline
#114500
passed with stages
in 1 minute and 31 seconds
Changes
3
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
4 deletions
+20
-4
.gitlab-ci.yml
.gitlab-ci.yml
+2
-2
run-compose.sh
run-compose.sh
+2
-2
setup.py
setup.py
+16
-0
No files found.
.gitlab-ci.yml
View file @
266acc14
include
:
include
:
-
project
:
oceanids/c2/
infrastructure
/ci-scripts
-
project
:
communications-backbone-system/backbone-
infrastructure
-config
ref
:
master
ref
:
master
file
:
python-microservice
/all.yml
file
:
gitlab
/all.yml
variables
:
variables
:
DOCKER_IMAGE_NAME
:
communications-backbone
DOCKER_IMAGE_NAME
:
communications-backbone
...
...
This diff is collapsed.
Click to expand it.
run-compose.sh
View file @
266acc14
...
@@ -19,8 +19,8 @@ while [ -n "$1" ]; do
...
@@ -19,8 +19,8 @@ while [ -n "$1" ]; do
EXTRA_ARGS
=
"--build"
EXTRA_ARGS
=
"--build"
;;
;;
tests
)
tests
)
docker-compose
-f
docker/docker-compose-test.yaml up
--build
docker-compose
-f
docker/docker-compose-test.yaml up
--build
--force-recreate
--exit-code-from
soar_api_test
exit
0
exit
$?
;;
;;
*
)
*
)
usage
usage
...
...
This diff is collapsed.
Click to expand it.
setup.py
0 → 100644
View file @
266acc14
#!/usr/bin/env python
from
setuptools
import
setup
,
find_packages
requirements
=
[
x
.
strip
()
for
x
in
open
(
"requirements.txt"
,
"r"
)
if
x
.
strip
()
!=
""
]
setup
(
name
=
"communications-backbone"
,
version
=
"0.0.1"
,
description
=
"Communications backbone "
,
author
=
"NOC C2 Team"
,
author_email
=
"c2@noc.ac.uk"
,
packages
=
find_packages
(),
install_requires
=
requirements
,
include_package_data
=
True
,
zip_safe
=
False
,
)
This diff is collapsed.
Click to expand it.
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