Google 分析和 CI - 更新到 angular 9
Google analytics and CI - update to angular 9
我有一个基于 circleCI 的应用程序。
angular从7升级到9后,在circleCI上安装cli开始提示
Google’s Privacy Policy at https://policies.google.com/privacy? For more details
and how to change this setting, see http://angular.io/analytics. (y/N)
我无法选择任何东西,因为它是 CI。
我找到 and this,但其中 none 有帮助。我尝试以不同的方式将其放入 config.yml
,但其中 none 有效。有人知道我应该如何插入变量吗?
这是我的 config.yml
文件的一部分:
executors:
node:
docker:
- image: circleci/node:11.6-browsers
working_directory: ~/repo
commands:
install_angularcli:
description: Install angular-cli
steps:
- run: sudo npm install -g @angular/cli
jobs:
build:
executor: node
environment:
- NG_CLI_ANALYTICS: "ci"
我无法使用环境变量方法来处理 circleci。相反,我做了以下事情:
sudo npm install -g @angular/cli > /dev/null
这是 post 中的答案之一。
我还需要将 docker NodeJS 版本升级到 10.13 或更高版本(根据 Angular 更新指南)。
docker:
- image: circleci/node:10.17
我有一个基于 circleCI 的应用程序。 angular从7升级到9后,在circleCI上安装cli开始提示
Google’s Privacy Policy at https://policies.google.com/privacy? For more details
and how to change this setting, see http://angular.io/analytics. (y/N)
我无法选择任何东西,因为它是 CI。
我找到 config.yml
,但其中 none 有效。有人知道我应该如何插入变量吗?
这是我的 config.yml
文件的一部分:
executors:
node:
docker:
- image: circleci/node:11.6-browsers
working_directory: ~/repo
commands:
install_angularcli:
description: Install angular-cli
steps:
- run: sudo npm install -g @angular/cli
jobs:
build:
executor: node
environment:
- NG_CLI_ANALYTICS: "ci"
我无法使用环境变量方法来处理 circleci。相反,我做了以下事情:
sudo npm install -g @angular/cli > /dev/null
这是 post 中的答案之一。
我还需要将 docker NodeJS 版本升级到 10.13 或更高版本(根据 Angular 更新指南)。
docker:
- image: circleci/node:10.17