Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
epm-docker-test
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
Иван Мажукин
epm-docker-test
Commits
3882c5ef
Commit
3882c5ef
authored
Apr 02, 2026
by
Ivan Mazhukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert bash in inner script; add bootstrap for unbashed systems
parent
6ceb27f2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
5 deletions
+18
-5
epm-docker-test.sh
epm-docker-test.sh
+18
-5
No files found.
epm-docker-test.sh
View file @
3882c5ef
...
...
@@ -390,7 +390,7 @@ APP_NAME="$2"
SOURCE_DIR="/work/eepm"
run_eepm() {
./bin/eepm "
$@
"
bash
./bin/eepm "
$@
"
}
os_id="unknown"
...
...
@@ -411,24 +411,37 @@ mkdir -p "$HOME"
export PATH="
$SOURCE_DIR
/bin:
$PATH
"
cd "
$SOURCE_DIR
"
run_eepm update
case "
$os_id
" in
altlinux|alt)
run_eepm --auto repo set etersoft
run_eepm update
run_eepm --auto install wget glibc-pthread file
;;
debian|ubuntu)
run_eepm --auto install bash wget ca-certificates coreutils file
run_eepm update
run_eepm --auto install wget ca-certificates coreutils file
;;
alpine)
apk update
apk add --no-cache bash
run_eepm update
run_eepm --auto install wget file
;;
void)
xbps-install -Syu
xbps-install -Sy bash
run_eepm update
run_eepm --auto install wget file
;;
*)
run_eepm update
run_eepm --auto install wget file bash
;;
esac
case "
$TEST_COMMAND
" in
play)
exec ./bin/eepm play --auto "
$APP_NAME
"
exec
bash
./bin/eepm play --auto "
$APP_NAME
"
;;
*)
printf '[container] unsupported test command: %s\n' "
$TEST_COMMAND
" >&2
...
...
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