boklm pushed to branch maint-14.0 at The Tor Project / Applications / tor-browser-build
Commits:
-
f3ce729e
by Nicolas Vigier at 2025-01-14T12:15:55+01:00
2 changed files:
Changes:
| 1 | +#!/bin/bash
|
|
| 2 | + |
|
| 3 | +# This script removes some files we don't need to publish on dist.tpo
|
|
| 4 | + |
|
| 5 | +set -e
|
|
| 6 | + |
|
| 7 | +script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
| 8 | +source "$script_dir/functions"
|
|
| 9 | + |
|
| 10 | +cd "$signed_version_dir"
|
|
| 11 | + |
|
| 12 | +# Remove Android test artifacts (tor-browser-build#41342)
|
|
| 13 | +rm -f -- *-androidTest.apk *-noopt-*.apk |
| ... | ... | @@ -42,6 +42,10 @@ function sync-builder-unsigned-to-local-signed { |
| 42 | 42 | "$script_dir/sync-builder-unsigned-to-local-signed"
|
| 43 | 43 | }
|
| 44 | 44 | |
| 45 | +function clean-build-artifacts {
|
|
| 46 | + "$script_dir/clean-build-artifacts"
|
|
| 47 | +}
|
|
| 48 | + |
|
| 45 | 49 | function sync-before-linux-signer-rcodesign-sign {
|
| 46 | 50 | "$script_dir/sync-local-to-linux-signer"
|
| 47 | 51 | }
|
| ... | ... | @@ -179,6 +183,7 @@ export SIGNING_PROJECTNAME |
| 179 | 183 | do_step set-time-on-signing-machine
|
| 180 | 184 | do_step wait-for-finished-build
|
| 181 | 185 | do_step sync-builder-unsigned-to-local-signed
|
| 186 | +do_step clean-build-artifacts
|
|
| 182 | 187 | do_step sync-scripts-to-linux-signer
|
| 183 | 188 | do_step sync-before-linux-signer-rcodesign-sign
|
| 184 | 189 | do_step linux-signer-rcodesign-sign
|