Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
eepm
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
etersoft
eepm
Commits
d564cd47
Commit
d564cd47
authored
Feb 05, 2026
by
Ivan Mazhukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
epm ci: push results in branch named like epm version
parent
e5965a28
Pipeline
#16915
passed with stage
in 16 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
7 deletions
+15
-7
push-ipfs-db.sh
ci/push-ipfs-db.sh
+8
-5
push-results-ci.sh
ci/push-results-ci.sh
+7
-2
No files found.
ci/push-ipfs-db.sh
View file @
d564cd47
...
...
@@ -3,6 +3,10 @@ set -euo pipefail
echo
"=== Publishing IPFS DB ==="
# Get epm version (major.minor)
EPM_VERSION
=
$(
"
$CI_PROJECT_DIR
/bin/epm"
--version
--short
|
cut
-d
.
-f1
,2
)
echo
"EPM version:
$EPM_VERSION
"
# repo vars
IPFS_REPO_URL
=
"https://gitlab.eterfund.ru/etersoft/epm-play-ci-results.git"
WORKDIR
=
"ipfs-results"
...
...
@@ -45,10 +49,9 @@ git commit -m "IPFS DB update (pipeline $CI_PIPELINE_ID)" || {
exit
0
}
# push via PAT
git remote set-url origin
\
"https://builder-robot:
${
CI_PUSH_TOKEN
}
@gitlab.eterfund.ru/etersoft/epm-play-ci-results.git"
git push
# push to version branch
git remote set-url origin
"https://builder-robot:
${
CI_PUSH_TOKEN
}
@gitlab.eterfund.ru/etersoft/epm-play-ci-results.git"
git checkout
-b
"
${
EPM_VERSION
}
"
git push origin
"
${
EPM_VERSION
}
"
2>/dev/null
echo
"=== IPFS DB and download log's published ==="
ci/push-results-ci.sh
View file @
d564cd47
...
...
@@ -3,6 +3,10 @@ set -euo pipefail
echo
"Collecting CI results"
# Get epm version (major.minor)
EPM_VERSION
=
$(
"
$CI_PROJECT_DIR
/bin/epm"
--version
--short
|
cut
-d
.
-f1
,2
)
echo
"EPM version:
$EPM_VERSION
"
RESULTS_REPO_URL
=
"https://gitlab.eterfund.ru/etersoft/epm-play-ci-results.git"
WORKDIR
=
"results"
RESULTS_DIR
=
"
${
CI_RESULTS_DIR
:-
epm
-results
}
"
...
...
@@ -40,6 +44,7 @@ git commit -m "CI results (${RESULTS_LABEL}): pipeline $CI_PIPELINE_ID" || {
exit
0
}
# push
# push
to version branch
git remote set-url origin
"https://builder-robot:
${
CI_PUSH_TOKEN
}
@gitlab.eterfund.ru/etersoft/epm-play-ci-results.git"
git push
git checkout
-b
"
${
EPM_VERSION
}
"
git push origin
"
${
EPM_VERSION
}
"
2>/dev/null
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