Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
1
1-tracer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Issue analytics
Insights
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
SO2
1-tracer
Commits
1292edd0
Commit
1292edd0
authored
2 years ago
by
Mihai Baruta
Browse files
Options
Downloads
Patches
Plain Diff
Code cleanup && ./local.sh docker interactive runs in the project dir
parent
535c7326
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
local.sh
+6
-5
6 additions, 5 deletions
local.sh
with
6 additions
and
5 deletions
local.sh
+
6
−
5
View file @
1292edd0
...
@@ -13,6 +13,8 @@ DEFAULT_IMAGE_NAME="$(basename "$(pwd)")"
...
@@ -13,6 +13,8 @@ DEFAULT_IMAGE_NAME="$(basename "$(pwd)")"
DEFAULT_TAG
=
'latest'
DEFAULT_TAG
=
'latest'
DEFAULT_REGISTRY
=
'gitlab.cs.pub.ro:5050'
DEFAULT_REGISTRY
=
'gitlab.cs.pub.ro:5050'
MOUNT_PROJECT_DIRECTORY
=
"/build/
$USER
/
$(
basename
"
$(
pwd
)
"
)
"
#=============================================================================
#=============================================================================
#=================================== UTILS ===================================
#=================================== UTILS ===================================
#=============================================================================
#=============================================================================
...
@@ -185,7 +187,8 @@ docker_interactive() {
...
@@ -185,7 +187,8 @@ docker_interactive() {
cp
-R
./
*
"
$tmpdir
"
cp
-R
./
*
"
$tmpdir
"
docker run
--rm
-it
\
docker run
--rm
-it
\
--mount
type
=
bind
,source
=
"
$tmpdir
"
,target
=
/build
\
--mount
type
=
bind
,source
=
"
$tmpdir
"
,target
=
"
$MOUNT_PROJECT_DIRECTORY
"
\
--workdir
"
$MOUNT_PROJECT_DIRECTORY
"
\
"
$full_image_name
"
"
$executable
"
"
$full_image_name
"
"
$executable
"
}
}
...
@@ -210,7 +213,6 @@ checker_main() {
...
@@ -210,7 +213,6 @@ checker_main() {
local
remove_image
=
''
local
remove_image
=
''
local
image_name
=
''
local
image_name
=
''
local
extra_docker_args
=()
local
extra_docker_args
=()
local
project_directory
=
''
while
[[
$#
-gt
0
]]
;
do
while
[[
$#
-gt
0
]]
;
do
case
$1
in
case
$1
in
...
@@ -246,10 +248,9 @@ checker_main() {
...
@@ -246,10 +248,9 @@ checker_main() {
# In your checker script if you must use absolute paths please use $CI_PROJECT_DIR to reference the location of your directory,
# In your checker script if you must use absolute paths please use $CI_PROJECT_DIR to reference the location of your directory,
# otherwise stick to relative paths.
# otherwise stick to relative paths.
# It is guaranteed that the current working directory in which checker.sh will run is $CI_PROJECT_DIR/checker.
# It is guaranteed that the current working directory in which checker.sh will run is $CI_PROJECT_DIR/checker.
project_directory
=
"/build/
$USER
/
$(
basename
"
$(
pwd
)
"
)
"
docker run
--rm
\
docker run
--rm
\
--mount
type
=
bind
,source
=
"
$tmpdir
"
,target
=
"
$
project_directory
"
\
--mount
type
=
bind
,source
=
"
$tmpdir
"
,target
=
"
$
MOUNT_PROJECT_DIRECTORY
"
\
"
$image_name
"
/bin/bash
-c
"rm -rf /usr/local/bin/bash; cd
\"
$
project_directory
/checker
\"
;
\"
$project_directory
/checker/checker.sh
\"
\"
${
script_args
[@]
}
\"
"
# remove bash middleware script
"
$image_name
"
/bin/bash
-c
"rm -rf /usr/local/bin/bash; cd
\"
$
MOUNT_PROJECT_DIRECTORY
/checker
\"
;
\"
$MOUNT_PROJECT_DIRECTORY
/checker/checker.sh
\"
\"
${
script_args
[@]
}
\"
"
# remove bash middleware script
if
[
-n
"
$remove_image
"
]
;
then
if
[
-n
"
$remove_image
"
]
;
then
LOG_INFO
"Cleaning up..."
LOG_INFO
"Cleaning up..."
...
...
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