Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Pupák
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Show more breadcrumbs
KSZK
Open Source
Pupák
Commits
857ea1eb
Commit
857ea1eb
authored
4 years ago
by
Robotka István Adrián
Browse files
Options
Downloads
Plain Diff
Merge branch 'hotfixci2' into 'master'
hotfix ci image name of push See merge request
!5
parents
ed490da9
3f8583b0
No related branches found
No related tags found
1 merge request
!5
hotfix ci image name of push
Pipeline
#4195
failed
4 years ago
Stage: Get dependencies
Stage: Static Analysis
Stage: Docker build
Changes
4
Pipelines
2
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
Dockerfile
+1
-1
1 addition, 1 deletion
Dockerfile
generator.py
+2
-0
2 additions, 0 deletions
generator.py
pupak.py
+1
-1
1 addition, 1 deletion
pupak.py
with
5 additions
and
3 deletions
.gitlab-ci.yml
+
1
−
1
View file @
857ea1eb
...
...
@@ -6,7 +6,7 @@ stages:
-
Docker build
variables
:
CONTAINER_IMAGE
:
"
hub.docker.com:robotka
/pupak:$CI_COMMIT_REF_NAME"
CONTAINER_IMAGE
:
"
registry.kszk.bme.hu/monitoring
/pupak:$CI_COMMIT_REF_NAME"
pip
:
stage
:
Get dependencies
...
...
This diff is collapsed.
Click to expand it.
Dockerfile
+
1
−
1
View file @
857ea1eb
...
...
@@ -9,4 +9,4 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[ "python", "
.
/pupak.py", "/data" ]
CMD
[ "python", "
/usr/src/app
/pupak.py", "/data" ]
This diff is collapsed.
Click to expand it.
generator.py
+
2
−
0
View file @
857ea1eb
...
...
@@ -79,3 +79,5 @@ class Generator:
file
=
open
(
out_name
,
"
w+
"
)
file
.
write
(
output
)
file
.
close
()
self
.
logger
.
info
(
"
Generation has finished. Output files in:
"
+
out_folder
)
This diff is collapsed.
Click to expand it.
pupak.py
+
1
−
1
View file @
857ea1eb
...
...
@@ -14,7 +14,7 @@ if __name__ == "__main__":
# Bootstrapping
setup_logging
()
logger
=
logging
.
getLogger
(
APP_LOG_TAG
)
logger
.
info
(
"
Starting Pupák generator script.
"
)
logger
.
debug
(
"
Starting Pupák generator script.
"
)
if
len
(
sys
.
argv
)
<
1
+
1
:
logger
.
error
(
"
Not enough CLI args.
"
)
...
...
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