File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ commands:
97
97
openssl aes-256-cbc -d -in .circleci/gcp_token -md md5 -k "${<< parameters.key >>}" -out /home/circleci/.gcp_credentials;
98
98
sudo bash -c "echo -e 'build --google_credentials=/home/circleci/.gcp_credentials' >> .bazelrc.user";
99
99
# Upload/don't upload local results to cache based on environment
100
- if [[ -n "{$CIRCLE_PR_NUMBER }" ]]; then
100
+ if [[ -n "{$CIRCLE_PULL_REQUEST }" ]]; then
101
101
sudo bash -c "echo -e 'build:remote --remote_upload_local_results=false\n' >> .bazelrc.user";
102
102
echo "Not uploading local build results to remote cache.";
103
103
else
@@ -287,7 +287,7 @@ jobs:
287
287
- run :
288
288
name : Execute E2E Tests
289
289
command : |
290
- if (Test-Path env:CIRCLE_PR_NUMBER ) {
290
+ if (Test-Path env:CIRCLE_PULL_REQUEST ) {
291
291
node tests\legacy-cli\run_e2e.js "--glob={tests/basic/**,tests/i18n/extract-ivy*.ts,tests/build/profile.ts}" --nb-shards=$env:CIRCLE_NODE_TOTAL --shard=$env:CIRCLE_NODE_INDEX
292
292
} else {
293
293
node tests\legacy-cli\run_e2e.js --nb-shards=$env:CIRCLE_NODE_TOTAL --shard=$env:CIRCLE_NODE_INDEX
You can’t perform that action at this time.
0 commit comments