Skip to content

Commit c468dc6

Browse files
committed
* Remove generate licenses
* Added --target for builds
1 parent bd0a831 commit c468dc6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -188,13 +188,13 @@ jobs:
188188
189189
if [ << parameters.env >> == 'prod' ]; then
190190
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY'" >> $envFile
191-
yarn package:prod --ignore-other-target-folders --target linux-x64 --out ${packagePath}
191+
yarn package:prod --target linux-x64 --out ${packagePath}
192192
exit 0;
193193
fi
194194
195195
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY_STAGE'" >> $envFile
196196
sed -i "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
197-
yarn package:stage --ignore-other-target-folders --target linux-x64 --out ${packagePath}
197+
yarn package:stage --target linux-x64 --out ${packagePath}
198198
- persist_to_workspace:
199199
root: .
200200
paths:
@@ -239,27 +239,27 @@ jobs:
239239
240240
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY_STAGE'" >> $envFile
241241
sed -i '' "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
242-
yarn package:stage --ignore-other-target-folders --target darwin-<< parameters.target >> --out ${packagePath}-<< parameters.target >>.vsix
242+
yarn package:stage --target darwin-<< parameters.target >> --out ${packagePath}-<< parameters.target >>.vsix
243243
exit 0;
244244
fi
245245
246246
if [ << parameters.env >> == 'prod' ]; then
247247
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY'" >> $envFile
248248
yarn download:backend arm64
249-
yarn package:prod --ignore-other-target-folders --target darwin-arm64 --out ${packagePath}-arm64.vsix
249+
yarn package:prod --target darwin-arm64 --out ${packagePath}-arm64.vsix
250250
251251
yarn download:backend x64
252-
yarn package:prod --ignore-other-target-folders --target darwin-x64 --out ${packagePath}-x64.vsix
252+
yarn package:prod --target darwin-x64 --out ${packagePath}-x64.vsix
253253
exit 0;
254254
fi
255255
256256
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY_STAGE'" >> $envFile
257257
sed -i '' "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
258258
yarn download:backend arm64
259-
yarn package:stage --ignore-other-target-folders --target darwin-arm64 --out ${packagePath}-arm64.vsix
259+
yarn package:stage --target darwin-arm64 --out ${packagePath}-arm64.vsix
260260
261261
yarn download:backend x64
262-
yarn package:stage --ignore-other-target-folders --target darwin-x64 --out ${packagePath}-x64.vsix
262+
yarn package:stage --target darwin-x64 --out ${packagePath}-x64.vsix
263263
- persist_to_workspace:
264264
root: .
265265
paths:
@@ -301,12 +301,12 @@ jobs:
301301
302302
if [ << parameters.env >> == 'prod' ]; then
303303
echo "RI_SEGMENT_WRITE_KEY='$RI_SEGMENT_WRITE_KEY'" >> $envFile
304-
yarn package:prod --ignore-other-target-folders --target win32-x64 --out ${packagePath}
304+
yarn package:prod --target win32-x64 --out ${packagePath}
305305
exit 0;
306306
fi
307307
308308
sed -i "s/^RI_APP_FOLDER_NAME=.*/RI_APP_FOLDER_NAME='.redis-for-vscode-stage'/" $envFile
309-
yarn package:stage --ignore-other-target-folders --target win32-x64 --out ${packagePath}
309+
yarn package:stage --target win32-x64 --out ${packagePath}
310310
shell: bash.exe
311311
no_output_timeout: 20m
312312
- persist_to_workspace:

0 commit comments

Comments
 (0)