Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
evolve-native-test
Manage
Activity
Members
Labels
Code
Merge requests
23
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Raphaël Gomès
evolve-native-test
Merge requests
!48
heptapod-ci: add a script to map evolve branch to mercurial revision for tests
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
heptapod-ci: add a script to map evolve branch to mercurial revision for tests
topic/stable/heptapod-ci
into
branch/stable
Overview
2
Commits
1
Pipelines
1
Changes
2
Merged
Raphaël Gomès
requested to merge
topic/stable/heptapod-ci
into
branch/stable
5 years ago
Overview
2
Commits
1
Pipelines
1
Changes
2
Expand
--HG-- branch : stable
Edited
5 years ago
by
Raphaël Gomès
👍
0
👎
0
Merge request reports
Compare
branch/stable
branch/stable (base)
and
latest version
latest version
4f3c8758
1 commit,
5 years ago
2 files
+
23
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
tests/testlib/map-hg-rev.sh
0 → 100755
+
15
−
0
Options
#!/bin/sh
set
-eu
case
$1
in
default
)
echo
default
;;
mercurial-
*
)
exp
=
$(
echo
"
$1
"
|
cut
-d-
-f2
|
sed
's#\.#\\.#g'
)
echo
'max(tag("re:^'
"
$exp
"
'"))'
;;
*
)
echo
stable
;;
esac
Loading