devops: fix --full command in FF which installs deps (#8878)
Broken since https://github.com/microsoft/playwright/pull/8049 Previously when doing `build.sh --full` it was installing deps + building. Currently when passing `--full` it does not install the deps before, since it tries to compile before.
This commit is contained in:
parent
ec2cbad76f
commit
5953472899
|
|
@ -102,7 +102,6 @@ if [[ $1 != "--juggler" ]]; then
|
|||
echo "-- Using cbindgen v${CBINDGEN_VERSION}"
|
||||
cargo install cbindgen --version "${CBINDGEN_VERSION}"
|
||||
fi
|
||||
./mach build
|
||||
fi
|
||||
|
||||
if [[ $1 == "--full" || $2 == "--full" ]]; then
|
||||
|
|
@ -121,6 +120,8 @@ fi
|
|||
|
||||
if [[ $1 == "--juggler" ]]; then
|
||||
./mach build faster
|
||||
else
|
||||
./mach build
|
||||
fi
|
||||
|
||||
if [[ "$(uname)" == "Darwin" ]]; then
|
||||
|
|
|
|||
|
|
@ -102,7 +102,6 @@ if [[ $1 != "--juggler" ]]; then
|
|||
echo "-- Using cbindgen v${CBINDGEN_VERSION}"
|
||||
cargo install cbindgen --version "${CBINDGEN_VERSION}"
|
||||
fi
|
||||
./mach build
|
||||
fi
|
||||
|
||||
if [[ $1 == "--full" || $2 == "--full" ]]; then
|
||||
|
|
@ -121,6 +120,8 @@ fi
|
|||
|
||||
if [[ $1 == "--juggler" ]]; then
|
||||
./mach build faster
|
||||
else
|
||||
./mach build
|
||||
fi
|
||||
|
||||
if [[ "$(uname)" == "Darwin" ]]; then
|
||||
|
|
|
|||
Loading…
Reference in a new issue