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
c2105e15
Commit
c2105e15
authored
2 years ago
by
Dragoș-Iulian ARGINT (94922)
Browse files
Options
Downloads
Patches
Plain Diff
Update checker.sh and local.sh
Signed-off-by:
Dragos Iulian ARGINT
<
dragos.argint@stud.acs.upb.ro
>
parent
39e73a0e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
checker/checker.sh
+4
-2
4 additions, 2 deletions
checker/checker.sh
local.sh
+8
-7
8 additions, 7 deletions
local.sh
with
12 additions
and
9 deletions
checker/checker.sh
+
4
−
2
View file @
c2105e15
...
@@ -41,7 +41,7 @@ run_checker()
...
@@ -41,7 +41,7 @@ run_checker()
rm
$module_path
rm
$module_path
fi
fi
pushd
/linux/tools/labs
pushd
/linux/tools/labs
&> /dev/null
if
[
-f
$output
]
;
then
if
[
-f
$output
]
;
then
echo
"Removing
$output
"
echo
"Removing
$output
"
rm
$output
&> /dev/null
rm
$output
&> /dev/null
...
@@ -70,6 +70,7 @@ run_checker()
...
@@ -70,6 +70,7 @@ run_checker()
do
do
if
((
timeout
>=
TIMEOUT
))
;
then
if
((
timeout
>=
TIMEOUT
))
;
then
if
[
-f
$output
]
;
then
if
[
-f
$output
]
;
then
echo
""
cat
$output
cat
$output
fi
fi
timeout_exceeded
timeout_exceeded
...
@@ -78,8 +79,9 @@ run_checker()
...
@@ -78,8 +79,9 @@ run_checker()
((
timeout
+
=
2
))
((
timeout
+
=
2
))
echo
-n
.
echo
-n
.
done
done
echo
""
cat
$output
cat
$output
popd
popd
&> /dev/null
}
}
case
$1
in
case
$1
in
...
...
This diff is collapsed.
Click to expand it.
local.sh
+
8
−
7
View file @
c2105e15
...
@@ -71,13 +71,14 @@ print_help() {
...
@@ -71,13 +71,14 @@ print_help() {
echo
""
echo
""
echo
" --full_image_name <full_image_name> - the full name of the image (default: gitlab.cs.pub.ro:5050/<current_directory_name>:latest)"
echo
" --full_image_name <full_image_name> - the full name of the image (default: gitlab.cs.pub.ro:5050/<current_directory_name>:latest)"
echo
" --use_executable <executable> - command to run inside the container (default: /bin/bash)"
echo
" --use_executable <executable> - command to run inside the container (default: /bin/bash)"
echo
" --privileged - run a privileged container. This allows the use of KVM"
echo
" --privileged - run a privileged container. This allows the use of KVM
(if available)
"
echo
""
echo
""
echo
"local.sh checker [--remove_image] [--use_existing_image <image_name>] [--force_build] [argumets_for_checker]"
echo
"local.sh checker [--remove_image] [--use_existing_image <image_name>] [--force_build]
[--privileged]
[argumets_for_checker]"
echo
""
echo
""
echo
" --remove_image - remove the checker's docker image after the run"
echo
" --remove_image - remove the checker's docker image after the run"
echo
" --use_existing_image - user image_name instead of building the image from current directory"
echo
" --use_existing_image - user image_name instead of building the image from current directory"
echo
" --force_build - disable caching when building the docker image"
echo
" --force_build - disable caching when building the docker image"
echo
" --privileged - run the checker in a privileged container. This allows the use of KVM (if available)"
echo
" argumets_for_checker - list of space separated arguments to be passed to the checker"
echo
" argumets_for_checker - list of space separated arguments to be passed to the checker"
echo
""
echo
""
}
}
...
@@ -237,6 +238,10 @@ checker_main() {
...
@@ -237,6 +238,10 @@ checker_main() {
--force_build
)
--force_build
)
extra_docker_args+
=(
'--no-cache'
)
extra_docker_args+
=(
'--no-cache'
)
;;
;;
--privileged
)
privileged
=
--privileged
;;
*
)
*
)
script_args+
=(
"
$1
"
)
script_args+
=(
"
$1
"
)
;;
;;
...
@@ -254,9 +259,6 @@ checker_main() {
...
@@ -254,9 +259,6 @@ checker_main() {
assign_tmpdir
=
"
$(
mktemp
-d
)
"
assign_tmpdir
=
"
$(
mktemp
-d
)
"
cp
-R
${
SRC_DIR
}
/
*
"
$assign_tmpdir
"
cp
-R
${
SRC_DIR
}
/
*
"
$assign_tmpdir
"
assign_check_tmpdir
=
"
$(
mktemp
-d
)
"
cp
-R
${
ASSIGNMENT_CHECKER_DIR
}
/
*
"
$assign_check_tmpdir
"
tmpdir
=
"
$(
mktemp
-d
)
"
tmpdir
=
"
$(
mktemp
-d
)
"
cp
-R
./
*
"
$tmpdir
"
cp
-R
./
*
"
$tmpdir
"
...
@@ -265,9 +267,8 @@ checker_main() {
...
@@ -265,9 +267,8 @@ 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.
docker run
--rm
\
docker run
$privileged
--rm
\
--mount
type
=
bind
,source
=
"
$assign_tmpdir
"
,target
=
"
$ASSIGNMENT_MOUNT_DIR
"
\
--mount
type
=
bind
,source
=
"
$assign_tmpdir
"
,target
=
"
$ASSIGNMENT_MOUNT_DIR
"
\
--mount
type
=
bind
,source
=
"
$assign_check_tmpdir
"
,target
=
"
$ASSIGNMENT_CHECKER_MOUNT_DIR
"
\
--mount
type
=
bind
,source
=
"
$tmpdir
"
,target
=
"
$MOUNT_PROJECT_DIRECTORY
"
\
--mount
type
=
bind
,source
=
"
$tmpdir
"
,target
=
"
$MOUNT_PROJECT_DIRECTORY
"
\
"
$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
"
$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
...
...
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