Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tor-browser-build
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
tor-browser-build
Commits
fe869201
Unverified
Commit
fe869201
authored
Jan 12, 2023
by
boklm
Browse files
Options
Downloads
Patches
Plain Diff
Bug 40735: Add command to list which translation components need to be updated
parent
68b589f8
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+6
-0
6 additions, 0 deletions
Makefile
projects/translation/config
+14
-0
14 additions, 0 deletions
projects/translation/config
tools/get-translation-hashes
+0
-13
0 additions, 13 deletions
tools/get-translation-hashes
with
20 additions
and
13 deletions
Makefile
+
6
−
0
View file @
fe869201
...
...
@@ -223,6 +223,12 @@ dmg2mar-alpha: submodule-update
tools/update-responses/download_missing_versions alpha
CHECK_CODESIGNATURE_EXISTS
=
1
MAR_SKIP_EXISTING
=
1 tools/update-responses/gen_incrementals alpha
list_translation_updates-release
:
$(
rbm
)
showconf
--target
release
--step
list_updates translation list_updates
list_translation_updates-alpha
:
$(
rbm
)
showconf
--target
alpha
--step
list_updates translation list_updates
list_toolchain_updates-fenix
:
submodule-update
$(
rbm
)
build fenix
--step
list_toolchain_updates
--target
nightly
--target
torbrowser-android-armv7
...
...
This diff is collapsed.
Click to expand it.
projects/translation/config
+
14
−
0
View file @
fe869201
...
...
@@ -30,3 +30,17 @@ steps:
targets
:
nightly
:
git_hash
:
'
fenix-torbrowserstringsxml'
list_updates
:
list_updates
:
|
[%
FOREACH component = [ 'base-browser', 'base-browser-fluent', 'tor-browser', 'fenix' ];
branch = pc(project, 'git_hash', { step => component, target => [ 'nightly' ] });
commit_hash = exec('git rev-parse ' _ branch, { git_hash => branch });
IF commit_hash == pc(project, "git_hash", { step => component });
GET '* ' _ component _ " is up to date\n";
ELSE;
GET '* ' _ component _ ' can be updated: ' _ commit_hash _ "\n";
END;
END;
-%]
fetch
:
1
This diff is collapsed.
Click to expand it.
tools/get-translation-hashes
deleted
100755 → 0
+
0
−
13
View file @
68b589f8
#!/bin/bash
cd
"
$(
dirname
"
$0
"
)
/../git_clones/translation"
git fetch
>
/dev/null 2>&1
echo
-n
"base-browser: "
git rev-parse origin/base-browser
echo
-n
"base-browser-fluent: "
git rev-parse origin/basebrowser-newidentityftl
echo
-n
"tor-browser: "
git rev-parse origin/tor-browser
echo
-n
"fenix: "
git rev-parse origin/fenix-torbrowserstringsxml
This diff is collapsed.
Click to expand it.
boklm
@boklm
mentioned in merge request
!622 (merged)
·
Jan 12, 2023
mentioned in merge request
!622 (merged)
mentioned in merge request !622
Toggle commit list
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
sign in
to comment