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
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Georg Koppen
tor-browser-build
Commits
07ffaa91
Unverified
Commit
07ffaa91
authored
5 years ago
by
boklm
Browse files
Options
Downloads
Patches
Plain Diff
Bug 25099: Remove the alpha_nightly target
parent
ead3b276
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
.gitignore
+0
-1
0 additions, 1 deletion
.gitignore
Makefile
+0
-33
0 additions, 33 deletions
Makefile
README
+1
-8
1 addition, 8 deletions
README
README.MAKEFILE
+0
-11
0 additions, 11 deletions
README.MAKEFILE
projects/release/config
+0
-6
0 additions, 6 deletions
projects/release/config
with
1 addition
and
59 deletions
.gitignore
+
0
−
1
View file @
07ffaa91
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
/out
/out
/release
/release
/alpha
/alpha
/alpha_nightly
/nightly
/nightly
/testbuild
/testbuild
/rbm.local.conf
/rbm.local.conf
...
...
This diff is collapsed.
Click to expand it.
Makefile
+
0
−
33
View file @
07ffaa91
...
@@ -110,39 +110,6 @@ nightly-osx-x86_64: submodule-update
...
@@ -110,39 +110,6 @@ nightly-osx-x86_64: submodule-update
nightly-src
:
submodule-update
nightly-src
:
submodule-update
$(
rbm
)
build release
--target
nightly
--target
torbrowser-src
$(
rbm
)
build release
--target
nightly
--target
torbrowser-src
alpha_nightly
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-all
alpha_nightly-android-armv7
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-android-armv7
alpha_nightly-android-x86
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-android-x86
alpha_nightly-android-x86_64
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-android-x86_64
alpha_nightly-android-aarch64
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-android-aarch64
alpha_nightly-linux-x86_64
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-linux-x86_64
alpha_nightly-linux-i686
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-linux-i686
alpha_nightly-windows-i686
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-windows-i686
alpha_nightly-windows-x86_64
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-windows-x86_64
alpha_nightly-osx-x86_64
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-osx-x86_64
alpha_nightly-src
:
submodule-update
$(
rbm
)
build release
--target
alpha_nightly
--target
torbrowser-src
testbuild
:
submodule-update
testbuild
:
submodule-update
$(
rbm
)
build release
--target
testbuild
--target
torbrowser-all
$(
rbm
)
build release
--target
testbuild
--target
torbrowser-all
...
...
This diff is collapsed.
Click to expand it.
README
+
1
−
8
View file @
07ffaa91
...
@@ -59,17 +59,10 @@ channel you want to build:
...
@@ -59,17 +59,10 @@ channel you want to build:
$ make release
$ make release
$ make alpha
$ make alpha
$ make nightly
$ make nightly
$ make alpha_nightly
You can find the build result in the directory release/unsigned/$version
You can find the build result in the directory release/unsigned/$version
or alpha/unsigned/$version for release or alpha builds. The result of
or alpha/unsigned/$version for release or alpha builds. The result of
nightly or alpha_nightly can be found in the nightly/$date or
nightly can be found in the nightly/$date directory.
alpha_nightly/$date directory.
The alpha and alpha_nightly make target will build the same thing. The
only difference is the output directory. The alpha_nightly target can be
useful if you want to do a test build without polluting your alpha
directory.
If you want to build for a specific platform only, append the platform
If you want to build for a specific platform only, append the platform
name to the makefile target:
name to the makefile target:
...
...
This diff is collapsed.
Click to expand it.
README.MAKEFILE
+
0
−
11
View file @
07ffaa91
...
@@ -36,17 +36,6 @@ nightly-{linux-x86_64,linux-i686,windows-i686,osx-x86_64,android-armv7,
...
@@ -36,17 +36,6 @@ nightly-{linux-x86_64,linux-i686,windows-i686,osx-x86_64,android-armv7,
-----------------------------------------------------------------------
-----------------------------------------------------------------------
Same as nightly, for the selected platform only.
Same as nightly, for the selected platform only.
alpha_nightly
-------------
Build Tor Browser for the alpha channel, for all supported platforms.
This is the same as 'make alpha', but the output directory is different.
The resulting build can be found in directory alpha_nightly/$date
alpha_nightly-{linux-x86_64,linux-i686,windows-i686,osx-x86_64,android-armv7,
android-x86,android-x86_64,android-aarch64}
-----------------------------------------------------------------------------
The same as alpha_nightly, for the selected platform only.
testbuild
testbuild
---------
---------
Build a Tor Browser test build. To make the build faster, only the en-US
Build a Tor Browser test build. To make the build faster, only the en-US
...
...
This diff is collapsed.
Click to expand it.
projects/release/config
+
0
−
6
View file @
07ffaa91
...
@@ -76,12 +76,6 @@ targets:
...
@@ -76,12 +76,6 @@ targets:
build_target
:
nightly
build_target
:
nightly
publish_dir
:
'
[%
c("var/today")
%]'
publish_dir
:
'
[%
c("var/today")
%]'
alpha_nightly
:
output_dir
:
'
alpha_nightly'
var
:
build_target
:
alpha
publish_dir
:
'
[%
c("var/today")
%]'
alpha
:
alpha
:
output_dir
:
alpha
output_dir
:
alpha
var
:
var
:
...
...
This diff is collapsed.
Click to expand it.
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
register
or
sign in
to comment