Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
ximper-builder
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ximper Linux
ximper-builder
Commits
60fff9e5
Verified
Commit
60fff9e5
authored
Nov 26, 2024
by
Кирилл Уницаев
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add check repos for release build
parent
588c6a5c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
build-distro
bin/build-distro
+19
-0
No files found.
bin/build-distro
View file @
60fff9e5
...
@@ -44,6 +44,23 @@ print_build_info() {
...
@@ -44,6 +44,23 @@ print_build_info() {
print_green
"REPOSITORIES:
$REPOS
"
print_green
"REPOSITORIES:
$REPOS
"
}
}
check_repos
()
{
if
[
"
$VER
"
==
"devel"
]
;
then
return
fi
local
list_repos
list_repos
=
"
${
1
//,/
}
"
for
repo
in
$list_repos
;
do
case
"
$repo
"
in
ximper-devel|hasher
)
print_error
"Использовать репозитории ximper-devel и hasher можно только в devel сборках."
exit
1
;;
esac
done
}
cleartmp
()
{
cleartmp
()
{
[
"
$CLEAN
"
==
true
]
||
return
[
"
$CLEAN
"
==
true
]
||
return
echo
"____________________"
echo
"____________________"
...
@@ -256,6 +273,8 @@ else
...
@@ -256,6 +273,8 @@ else
exit
1
exit
1
fi
fi
check_repos
"
$REPOS
"
print_build_info
print_build_info
# Генерация списка задач на сборку
# Генерация списка задач на сборку
...
...
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