123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717 |
- # vim: filetype=yaml sw=2
- debug: '[% GET ! ENV.RBM_NO_DEBUG %]'
- output_dir: "out/[% project %]"
- tmp_dir: '[% c("basedir") %]/tmp'
- build_log: '[% GET ENV.RBM_LOGS_DIR ? ENV.RBM_LOGS_DIR : "logs" %]/[% project %][% IF c("var/osname") %]-[% c("var/osname") %][% END %].log'
- pkg_type: build
- container:
- disable_network:
- # disable network in the build scripts
- build: 1
- steps:
- src-tarballs:
- compress_tar: xz
- src-tarballs: |
- #!/bin/bash
- set -e
- mkdir -p '[% dest_dir %]'
- mv -vf '[% project %]-[% c("version") %].tar.xz' '[% dest_dir %]/[% c("filename") %]'
- list_toolchain_updates:
- build_log: '-'
- list_toolchain_updates: '[% INCLUDE list_toolchain_updates %]'
- cargo_vendor:
- output_dir: "out/[% project %]/cargo_vendor"
- var:
- container:
- suite: bullseye
- arch: amd64
- pre_pkginst: ''
- deps:
- - bzip2
- - ca-certificates
- - patch
- - xz-utils
- cargo_vendor: |
- #!/bin/bash
- [% c("var/set_default_env") %]
- mkdir /var/tmp/dist
- # NOTE: since different projects need different rust versions,
- # we use the version of cargo produced by the rust project
- # build rather than the build container's debian package.
- # Thus, any project that wants to run a `cargo_vendor` step
- # must be sure to provide the rust project as an `input_file`.
- # See, e.g.,`application-services/config.steps.cargo_vendor.input_files`.
- tar -C /var/tmp/dist -xf [% c('input_files_by_name/rust') %]
- export PATH="/var/tmp/dist/rust/bin:$PATH"
- tar -xf [% project %]-[% c('version') %].tar.gz
- cd [% project %]-[% c('version') %]
- [% c("var/pre_cargo_vendor") %]
- cargo vendor vendor [% c("var/cargo_vendor_opts") %]
- [% c('tar', {
- tar_src => [ 'vendor' ],
- tar_args => '-caf ' _ dest_dir _ '/' _ c('filename'),
- }) %]
- cd [% dest_dir %]
- fname="out/[% project %]/cargo_vendor/[% c('filename') %]"
- echo
- echo "Finished creating $fname"
- sha256sum "[% c('filename') %]"
- echo "You can upload it with:"
- echo " scp -p $fname people.torproject.org:public_html/mirrors/sources"
- # buildconf contains build options that the user can change in rbm.local.conf
- # When adding a new option to buildconf, a default value should be defined
- # in var/build_id, so that changing this option does not affect the build_id.
- buildconf:
- git_signtag_opt: '-s'
- deb_native_arch: arm64
- var:
- torbrowser_version: '12.0.1'
- torbrowser_build: 'build1'
- torbrowser_incremental_from:
- - 12.0
- build_mar: 1
- # By default, we sort the list of installed packages. This allows sharing
- # containers with identical list of packages, even if they are not listed
- # in the same order. In the cases where the installation order is
- # important, sort_deps should be set to 0.
- sort_deps: 1
- build_id: '[% sha256(c("var/build_id_txt", { num_procs => 4 })).substr(0, 6) %]'
- build_id_txt: |
- [% c("version") %]
- [% IF c("git_hash") || c("hg_hash"); GET c("abbrev"); END; %]
- [% IF c("container/use_container") && ! c("container/global_disable") -%]
- [% c("var/container/suite") %]
- [% c("var/container/arch") %]
- [% END -%]
- input_files: [% c("input_files_id") %]
- build:
- [% SET step = c("step") -%]
- [% c(step, { filename => 'f', output_dir => '/out', norec => {} }) %]
- locale_ja: ja
- locales:
- - ar
- - ca
- - cs
- - da
- - de
- - el
- - es-ES
- - fa
- - fr
- - ga-IE
- - he
- - hu
- - id
- - is
- - it
- - '[% c("var/locale_ja") %]'
- - ka
- - ko
- - lt
- - mk
- - ms
- - my
- - nb-NO
- - nl
- - pl
- - pt-BR
- - ro
- - ru
- - sq
- - sv-SE
- - th
- - tr
- - uk
- - vi
- - zh-CN
- - zh-TW
- locales_mobile:
- - ar
- - ca
- - cs
- - da
- - de
- - el
- - es-rES
- - fa
- - fr
- - ga-rIE
- - hu
- - in
- - is
- - it
- - iw
- - ja
- - ka
- - ko
- - lt
- - my
- - nb-rNO
- - nl
- - pl
- - pt-rBR
- - ro
- - ru
- - sq
- - sv-rSE
- - th
- - tr
- - uk
- - vi
- - zh-rCN
- - zh-rTW
- sign_build: '[% ENV.RBM_SIGN_BUILD %]'
- sign_build_gpg_opts: '[% ENV.RBM_GPG_OPTS %]'
- set_default_env: |
- set -e
- [% FOREACH env = c('ENV') -%]
- export [% env.key %]="[% env.value %]"
- [% END -%]
- rootdir=$(pwd)
- export SHELL=/bin/bash
- export HOME=$rootdir
- umask 0022
- [% IF c("container/global_disable") -%]
- rm -Rf /var/tmp/build /var/tmp/dist
- [% END -%]
- DOCSDIR_project: '[% project %]'
- targets:
- notarget: linux-x86_64
- noint:
- debug: 0
- release:
- var:
- release: 1
- channel: release
- alpha:
- var:
- alpha: 1
- channel: alpha
- nightly:
- fetch: 1
- var:
- nightly: 1
- channel: nightly
- torbrowser_version: |
- [%
- IF ENV.TORBROWSER_NIGHTLY_VERSION;
- GET ENV.TORBROWSER_NIGHTLY_VERSION;
- ELSIF c("var/testbuild");
- GET "testbuild";
- ELSE;
- GET c("var_p/nightly_torbrowser_version");
- END;
- -%]
- max_torbrowser_incremental_from: 2
- build_infos_json: 1
- torbrowser:
- var:
- tor-browser: 1
- project-name: tor-browser
- projectname: torbrowser
- Project_Name: 'Tor Browser'
- ProjectName: TorBrowser
- basebrowser:
- var:
- base-browser: 1
- project-name: base-browser
- projectname: basebrowser
- Project_Name: 'Base Browser'
- ProjectName: BaseBrowser
- torbrowser-testbuild:
- - testbuild
- - alpha
- - torbrowser
- basebrowser-testbuild:
- - testbuild
- - alpha
- - basebrowser
- testbuild:
- var:
- testbuild: 1
- # Don't create mar files to save time
- build_mar: 0
- # Building only one architecture saves a lot of time
- android_single_arch: 1
- torbrowser-android-armv7:
- - android-armv7
- - android
- - torbrowser
- basebrowser-android-armv7:
- - android-armv7
- - android
- - basebrowser
- android-armv7:
- arch: armv7
- var:
- android-armv7: 1
- osname: android-armv7
- toolchain_arch: arm
- abi: armeabi-v7a
- cross_prefix: armv7a-linux-androideabi
- torbrowser-android-x86:
- - android-x86
- - android
- - torbrowser
- basebrowser-android-x86:
- - android-x86
- - android
- - basebrowser
- android-x86:
- arch: x86
- var:
- android-x86: 1
- osname: android-x86
- toolchain_arch: x86
- abi: x86
- cross_prefix: i686-linux-android
- torbrowser-android-x86_64:
- - android-x86_64
- - android
- - torbrowser
- basebrowser-android-x86_64:
- - android-x86_64
- - android
- - basebrowser
- android-x86_64:
- arch: x86_64
- var:
- android-x86_64: 1
- osname: android-x86_64
- toolchain_arch: x86_64
- abi: x86_64
- cross_prefix: x86_64-linux-android
- torbrowser-android-aarch64:
- - android-aarch64
- - android
- - torbrowser
- basebrowser-android-aarch64:
- - android-aarch64
- - android
- - basebrowser
- android-aarch64:
- arch: aarch64
- var:
- android-aarch64: 1
- osname: android-aarch64
- toolchain_arch: arm64
- abi: arm64-v8a
- cross_prefix: aarch64-linux-android
- android:
- container:
- disable_network:
- # Disable network in the script for merging GeckoView .aar files
- merge_aars: 1
- var:
- android: 1
- compiler: android-toolchain
- android_min_api: '[% GET c("var/android_min_api_" _ c("arch")) %]'
- CC: '[% c("var/cross_prefix") %][% c("var/android_min_api") %]-clang'
- CXX: '[% c("var/cross_prefix") %][% c("var/android_min_api") %]-clang'
- # API 21 is the minimum we currently support on Android
- android_min_api_armv7: 21
- android_min_api_x86: 21
- android_min_api_x86_64: 21
- android_min_api_aarch64: 21
- container:
- suite: bullseye
- arch: amd64
- deps:
- - build-essential
- - bison
- - python3
- - python3-distutils
- - python3-venv
- - automake
- - libtool
- - zip
- - unzip
- - libtinfo5
- - libssl-dev
- - pkg-config
- - zlib1g-dev
- configure_opt: '--host=[% c("var/cross_prefix") %] CC=[% c("var/CC") %] [% c("var/configure_opt_project") %]'
- pre_pkginst: |
- SNAPSHOT_VERSION=20191201T212855Z
- OPENJDK_URL=https://snapshot.debian.org/archive/debian/$SNAPSHOT_VERSION/pool/main/o/openjdk-8
- JDK_VERSION=8u232-b09-1~deb9u1_amd64
- apt-get install -y -q wget ca-certificates-java
- wget $OPENJDK_URL/openjdk-8-jdk-headless_$JDK_VERSION.deb
- wget $OPENJDK_URL/openjdk-8-jre-headless_$JDK_VERSION.deb
- echo 92b4f8fb77d793a86e0b03b3b0750592b40a26a5d75956d10dd984a7b3aad4c9 openjdk-8-jdk-headless_$JDK_VERSION.deb | sha256sum -c
- echo 84bf52b6cce20ead08b0d5b9fd9b81b4aa3da385ca951b313fe11d5cb1aa4d17 openjdk-8-jre-headless_$JDK_VERSION.deb | sha256sum -c
- apt-get install -y -q ./openjdk-8-jre-headless_$JDK_VERSION.deb ./openjdk-8-jdk-headless_$JDK_VERSION.deb
- torbrowser-linux-x86_64:
- - linux-x86_64
- - linux
- - torbrowser
- basebrowser-linux-x86_64:
- - linux-x86_64
- - linux
- - basebrowser
- torbrowser-linux-x86_64-asan:
- - linux-asan
- - linux-x86_64
- - linux
- - torbrowser
- basebrowser-linux-x86_64-asan:
- - linux-asan
- - linux-x86_64
- - linux
- - basebrowser
- torbrowser-linux-i686:
- - linux-i686
- - linux
- - torbrowser
- basebrowser-linux-i686:
- - linux-i686
- - linux
- - basebrowser
- torbrowser-linux-arm64:
- - linux-arm64
- - linux
- - torbrowser
- basebrowser-linux-arm64:
- - linux-arm64
- - linux
- - basebrowser
- torbrowser-linux-armhf:
- - linux-armhf
- - linux
- - torbrowser
- basebrowser-linux-armhf:
- - linux-armhf
- - linux
- - basebrowser
- torbrowser-linux-arm:
- - linux-arm
- - linux-cross
- - linux
- - torbrowser
- basebrowser-linux-arm:
- - linux-arm
- - linux-cross
- - linux
- - basebrowser
- linux-x86_64:
- arch: x86_64
- var:
- linux-x86_64: 1
- osname: linux-x86_64
- linux-cross: 0
- gnu-build-triplet: x86_64-unknown-linux-gnu
- gnu-host-triplet: x86_64-unknown-linux-gnu
- arch_debian: amd64
- # We only support RLBox on the nightly channel and x86_64 for now
- rlbox: 0
- linux-i686:
- arch: i686
- var:
- linux-i686: 1
- osname: linux-i686
- linux-cross: 0
- gnu-build-triplet: x86_64-unknown-linux-gnu
- gnu-host-triplet: i686-unknown-linux-gnu
- configure_opt: '--host=i686-linux-gnu CFLAGS=-m32 CXXFLAGS=-m32 LDFLAGS=-m32 [% c("var/configure_opt_project") %]'
- arch_debian: i386
- linux-arm64:
- arch: aarch64
- var:
- linux-arm64: 1
- osname: linux-arm64
- linux-cross: 0
- gnu-build-triplet: aarch64-unknown-linux-gnu
- gnu-host-triplet: aarch64-unknown-linux-gnu
- arch_debian: arm64
- container:
- arch: arm64
- # jessie is the first 64-bit arm release...and has a bug
- # in glibc which fails firefox build (dlopen: cannot load any more object with static TLS)
- # and for whatever reason newer distros no longer work if built on
- # stretch either
- suite: buster
- pre_pkginst: ''
- deps:
- - pkg-config
- - libssl-dev
- - build-essential
- - python
- - bison
- - automake
- - libtool
- - zip
- - unzip
- - xz-utils
- - patch
- linux-armhf:
- arch: arm
- var:
- linux-armhf: 1
- osname: linux-armhf
- linux-cross: 0
- gnu-build-triplet: armv7-unknown-linux-gnueabihf
- gnu-host-triplet: armv7-unknown-linux-gnueabihf
- configure_opt: '--build=[% c("var/gnu-build-triplet") %] --host=[% c("var/gnu-host-triplet") %] [% c("var/configure_opt_project") %]'
- arch_debian: armhf
- container:
- arch: armhf
- suite: buster
- pre_pkginst: ''
- deps:
- - pkg-config
- - libssl-dev
- - build-essential
- - python
- - bison
- #- hardening-wrapper
- - automake
- - libtool
- - zip
- - unzip
- - xz-utils
- - patch
- linux-arm:
- arch: arm
- var:
- linux-arm: 1
- osname: linux-arm
- crosstarget: arm-linux-gnueabihf
- arch_debian: armhf
- linux-cross:
- var:
- linux-cross: 1
- container:
- arch: amd64
- configure_opt: '--host=[% c("var/crosstarget") %] [% c("var/configure_opt_project") %]'
- linux:
- var:
- linux: 1
- compiler: gcc
- configure_opt: '[% c("var/configure_opt_project") %]'
- # Only build Namecoin for linux on nightly
- namecoin: '[% c("var/nightly") && c("var/tor-browser") %]'
- container:
- suite: jessie
- arch: amd64
- pre_pkginst: dpkg --add-architecture i386
- deps:
- - libc6-dev-i386
- - lib32stdc++6
- - pkg-config
- - libssl-dev
- - build-essential
- - python
- - bison
- - hardening-wrapper
- - automake
- - libtool
- - zip
- - unzip
- - xz-utils
- - patch
- linux-asan:
- var:
- asan: 1
- # RLBox needs clang to create .wasm files but we use mostly GCC for our
- # ASan builds. Thus, the compilation currently breaks with RLBox enabled.
- # See: tor-browser-build#40063.
- rlbox: 0
- torbrowser-windows-i686:
- - windows-i686
- - windows
- - torbrowser
- basebrowser-windows-i686:
- - windows-i686
- - windows
- - basebrowser
- torbrowser-windows-x86_64:
- - windows-x86_64
- - windows
- - torbrowser
- basebrowser-windows-x86_64:
- - windows-x86_64
- - windows
- - basebrowser
- windows-x86_64:
- arch: x86_64
- var:
- windows-x86_64: 1
- windows-i686: 0
- osname: windows-x86_64
- gnu-build-triplet: x86_64-unknown-linux-gnu
- gnu-host-triplet: x86_64-pc-windows-gnu
- windows-i686:
- arch: i686
- var:
- windows-i686: 1
- windows-x86_64: 0
- osname: windows-i686
- gnu-build-triplet: x86_64-unknown-linux-gnu
- gnu-host-triplet: i686-pc-windows-gnu
- # mingw-w64 does not support SEH on 32bit systems. Be explicit about that.
- flag_noSEH: '-Wl,--no-seh'
- windows:
- var:
- windows: 1
- container:
- suite: bullseye
- arch: amd64
- configure_opt: '--host=[% c("arch") %]-w64-mingw32 CFLAGS="[% c("var/CFLAGS") %]" LDFLAGS="[% c("var/LDFLAGS") %]" [% c("var/configure_opt_project") %]'
- CFLAGS: '-fstack-protector-strong -fno-strict-overflow -Wno-missing-field-initializers -Wformat -Wformat-security [% c("var/flag_mwindows") %]'
- LDFLAGS: '-Wl,--no-insert-timestamp [% c("var/flag_noSEH") %] [% c("var/flag_mwindows") %]'
- flag_mwindows: '-Wl,--subsystem,windows'
- compiler: mingw-w64-clang
- deps:
- - build-essential
- - python3
- - python3-distutils
- - bison
- - automake
- - libtool
- - zip
- - unzip
- - libssl-dev
- - zlib1g-dev
- torbrowser-macos:
- - macos-universal
- - macos-x86_64
- - macos
- - torbrowser
- torbrowser-macos-x86_64:
- - macos-x86_64
- - macos
- - torbrowser
- torbrowser-macos-aarch64:
- - macos-aarch64
- - macos
- - torbrowser
- basebrowser-macos:
- - macos-universal
- - macos-x86_64
- - macos
- - basebrowser
- macos-universal:
- var:
- macos_universal: 1
- macos-aarch64:
- arch: aarch64
- var:
- macos-aarch64: 1
- macos-x86_64: 0
- osname: macos-aarch64
- macos_arch: arm64
- build_target: aarch64-apple-darwin
- gnu-build-triplet: x86_64-unknown-linux-gnu
- gnu-host-triplet: aarch64-apple-darwin
- macosx_deployment_target: '11.0'
- macos-x86_64:
- arch: x86_64
- var:
- macos-x86_64: 1
- osname: macos-x86_64
- macos_arch: x86_64
- build_target: x86_64-apple-darwin
- gnu-build-triplet: x86_64-unknown-linux-gnu
- gnu-host-triplet: x86_64-apple-darwin11
- macosx_deployment_target: '10.12'
- macos:
- var:
- macos: 1
- osname: macos
- container:
- suite: bullseye
- arch: amd64
- compiler: 'macosx-toolchain'
- configure_opt: '--host=[% c("var/build_target") %] CC="[% c("var/build_target") %]-clang [% c("var/FLAGS") %]" CXX="[% c("var/build_target") %]-clang++ [% c("var/FLAGS") %]" [% c("var/configure_opt_project") %]'
- FLAGS: "-target [% c('var/build_target') %] -B $cctoolsdir -isysroot $sysrootdir [% IF c('var/macos-aarch64') %]-mcpu=apple-m1[% END %]"
- LDFLAGS: "-Wl,-syslibroot,$sysrootdir -Wl,-dead_strip -Wl,-pie"
- locale_ja: ja-JP-mac
- rlbox: 0
- deps:
- - build-essential
- - faketime
- - python3
- - python3-distutils
- - automake
- - bison
- - libtool
- - zip
- - unzip
- - libssl-dev
- - zlib1g-dev
- faketime_path: /usr/lib/x86_64-linux-gnu/faketime/libfaketime.so.1
- # The no_build_id target can be useful if you want to quickly display
- # a build template or other option but don't want to spend time to
- # compute the various build ids
- no_build_id:
- # The defaut timestamp value will use the commit time of the
- # selected commit for the project, which will require cloning the
- # git repository if it is not present. When we use the no_build_id
- # target to display a script, we usually don't care about such
- # details, so we set timestamp to 0 to avoid unnecessary cloning.
- timestamp: 0
- var:
- build_id: 1
- no_containers:
- container:
- global_disable: 1
- # allow git tag signed using an expired key.
- # https://bugs.torproject.org/19737
- gpg_allow_expired_keys: 1
- --- |
- # This part of the file contains options written in perl
- use IO::CaptureOutput qw(capture_exec);
- (
- var_p => {
- nightly_torbrowser_version => sub {
- state $version = '';
- return $version if $version;
- my (undef, undef, undef, $day, $mon, $year) = gmtime;
- $version = sprintf("tbb-nightly.%u.%02u.%02u", $year + 1900, $mon + 1, $day);
- return $version;
- },
- nightly_torbrowser_incremental_from => sub {
- my ($project, $options) = @_;
- my $nightly_dir = project_config($project, 'basedir', $options) . '/nightly';
- my $current_version = project_config($project, 'var/torbrowser_version', $options);
- use Path::Tiny;
- return [] unless -d $nightly_dir;
- my @dirs = sort map { $_->basename } path($nightly_dir)->children(qr/^tbb-nightly\./);
- my $nb_incr = project_config($project, ['var', 'max_torbrowser_incremental_from'], $options);
- my @res;
- while ($nb_incr > 0) {
- my $dir = pop @dirs;
- last unless $dir;
- next if $dir eq $current_version;
- $nb_incr--;
- push @res, $dir;
- }
- return [@res];
- },
- },
- )
|