Bug 1495293 - Set RUSTC_BOOTSTRAP in the taskcluster task definition instead of the mozconfig. r=froydnj

This commit is contained in:
Kartikaya Gupta 2018-10-02 08:24:41 -04:00
Родитель 1cfd1c1d27
Коммит 3bfb4df27f
3 изменённых файлов: 6 добавлений и 4 удалений

Просмотреть файл

@ -13,8 +13,8 @@ ac_add_options --enable-dmd
export CC="$topsrcdir/clang/bin/clang" export CC="$topsrcdir/clang/bin/clang"
export CXX="$topsrcdir/clang/bin/clang++" export CXX="$topsrcdir/clang/bin/clang++"
# Save rust analysis (this requires unlocking the unstable features) # Save rust analysis (this requires unlocking the unstable features,
export RUSTC_BOOTSTRAP=1 # which is done in the taskcluster task definition via RUSTC_BOOTSTRAP)
export RUSTFLAGS="-Zsave-analysis" export RUSTFLAGS="-Zsave-analysis"
# Add the static checker # Add the static checker

Просмотреть файл

@ -7,8 +7,8 @@ MOZ_AUTOMATION_L10N_CHECK=0
ac_add_options --enable-debug ac_add_options --enable-debug
ac_add_options --enable-dmd ac_add_options --enable-dmd
# Save rust analysis (this requires unlocking the unstable features) # Save rust analysis (this requires unlocking the unstable features,
export RUSTC_BOOTSTRAP=1 # which is done in the taskcluster task definition via RUSTC_BOOTSTRAP)
export RUSTFLAGS="-Zsave-analysis" export RUSTFLAGS="-Zsave-analysis"
ac_add_options --enable-clang-plugin ac_add_options --enable-clang-plugin

Просмотреть файл

@ -35,6 +35,7 @@ jobs:
max-run-time: 36000 max-run-time: 36000
env: env:
PERFHERDER_EXTRA_OPTIONS: searchfox PERFHERDER_EXTRA_OPTIONS: searchfox
RUSTC_BOOTSTRAP: "1"
run: run:
using: mozharness using: mozharness
actions: [build] actions: [build]
@ -62,6 +63,7 @@ jobs:
env: env:
TOOLTOOL_MANIFEST: "browser/config/tooltool-manifests/macosx64/cross-releng.manifest" TOOLTOOL_MANIFEST: "browser/config/tooltool-manifests/macosx64/cross-releng.manifest"
PERFHERDER_EXTRA_OPTIONS: searchfox PERFHERDER_EXTRA_OPTIONS: searchfox
RUSTC_BOOTSTRAP: "1"
run: run:
using: mozharness using: mozharness
actions: [get-secrets build] actions: [get-secrets build]