我的主目录中有两个文件夹,cloud_functions和cloudbuild:
├── cloud_functions
│ ├── batch_predict
│ │ ├── config.py
│ ├── main.py
│ ├── requirements.txt
│ └── utils.py
├── cloudbuild
│ ├── batch_predict_cloud_function
│ │ ├── config.yaml
│ │ ├── create_triggers.sh
在Cloud构建触发器中,我将glob模式指定为:
- cloud_functions/batch_predict/**
- cloudbuild/batch_predict_cloud_function/**
这是通过创建触发器的gcloud命令中的以下标志实现的:
--included-files="cloud_functions/batch_predict/**, cloudbuild/batch_predict_cloud_function/**"
我验证了globs是否在UI中注册,但cloudbuild文件夹中的更改不会触发构建,有什么想法吗?
要在gcloud
命令中指定多个glob模式,必须使用以下语法向--included-files
选项传递多个参数:
--included-files "cloud_functions/batch_predict/**","cloudbuild/batch_predict_cloud_function/**"