7

我的工作区如下所示:

|
|--> web-app
     |
     |--> src
     |--> build
          |
          |--> fonts
          |--> static

我的cloudbuild.json样子是这样的:

{
    "steps" : [
    {
...
    },
    ],
    "artifacts": {
        "objects": {
            "location": "gs://my_bucket/",
            "paths": [
                "web-app/build/**"
            ]
        }
    }
}

我希望谷歌云构建将递归build/文件夹的内容并将文件和目录复制到我的存储桶。相反,它只复制根build/目录中的文件,忽略目录并给出有关使用-r选项的警告gsutil cp

这是构建输出:

...
Artifacts will be uploaded to gs://my_bucket using gsutil cp
web-app/build/**: Uploading path....
Omitting directory "file://web-app/build/fonts". (Did you mean to do cp -r?)
Omitting directory "file://web-app/build/static". (Did you mean to do cp -r?)
Copying file://web-app/build/index.html [Content-Type=text/html]...
Copying file://web-app/build/asset-manifest.json [Content-Type=application/json]...
Copying file://web-app/build/favicon.ico [Content-Type=image/vnd.microsoft.icon]...
Copying file://web-app/build/manifest.json [Content-Type=application/json]...   
Copying file://web-app/build/service-worker.js [Content-Type=application/javascript]...
/ [5/5 files][ 28.4 KiB/ 28.4 KiB] 100% Done                                    
Operation completed over 5 objects/28.4 KiB.                                     
web-app/build/**: 5 matching files uploaded
5 total artifacts uploaded to gs://my_bucket/
Uploading manifest artifacts-d4a2b3e4-97ba-4eb0-b226-e0c914ac4f61.json
Artifact manifest located at gs://my_bucket/artifacts-d4a2b3e4-97ba-4eb0-b226-e0c914ac4f61.json
DONE

文档https://cloud.google.com/storage/docs/gsutil/addlhelp/WildcardNames#directory-by-directory-vs-recursive-wildcards表明情况并非如此。

我想我可以使用gsutil 云构建器,但我怀疑我不需要,而且我在这里做错了什么。

4

1 回答 1

13

目前(2018-11)无法一对一地递归复制工件目录。您最好的选择是在您的 cloudbuild.yaml 文件中使用 gsutil 步骤(正如您已经提到的),类似于:

steps:
- ....
- name: 'gcr.io/cloud-builders/gsutil'
  args: ['-m', 'cp', '-r', 'web-app/build*', 'gs://my_bucket/$BUILD_ID']
于 2018-10-31T01:18:16.693 回答