在docs测试云功能的结尾,有一个关于CI / CD的部分。但是,他们给出的唯一示例是节点。我一直在尝试用python 3.7做某事无济于事。
每次推送到Google Source Cloud存储库时,我都会设置一个触发器。它是一个多功能项目
├── actions
│ ├── action.json
│ └── main.py
├── cloudbuild.yaml
├── Dockerfile
├── graph
│ ├── main.py
│ └── requirements.txt
└── testing
├── test_actions.py
└── test_graph.py
我尝试过example进行自定义构建。
这是我的cloudbuild.yml
:
steps:
- name: 'gcr.io/momentum-360/pytest'
这是我的Dockerfile
:
FROM python:3.7
COPY . /
WORKDIR /
RUN pip install -r graph/requirements.txt
RUN pip install pytest
ENTRYPOINT ["pytest"]
在云构建环境(而非本地)中运行它时,出现以下错误:
"Missing or insufficient permissions.","grpc_status":7}"
E >
The above exception was the direct cause of the following exception:
testing/test_graph.py:7: in <module>
from graph import main
这意味着我没有足够的权限来读取自己的文件?我不确定我是否正在正确执行此操作。
答案 0 :(得分:2)
我相信问题出在您的cloudbuild.yaml
上。您需要对其进行配置,以从Dockerfile构建映像。 Check the official Google Cloud Build了解如何创建构建配置文件。
我一直在尝试这种简单的设置,它对我有用:
├── project
├── cloudbuild.yaml
└── Dockerfile
└── test_sample.py
test_sample.py
的内容:
def inc(x):
return x + 1
def test_answer():
assert inc(3) == 4
这里是cloudbuild.yaml
:
steps:
- name: 'gcr.io/cloud-builders/docker'
args: [ 'build', '-t', 'gcr.io/$PROJECT_ID/pytest-image', '.' ]
images:
- 'gcr.io/$PROJECT_ID/pytest-image'
Dockerfile
,将项目复制到其自己的目录中以运行pytest很重要。
FROM python:3.7
COPY . /project
WORKDIR /project
RUN pip install pytest
ENTRYPOINT ["pytest"]
现在,我们在项目目录中构建映像:
gcloud builds submit --config cloudbuild.yaml .
我们拉它:
docker pull gcr.io/$PROJECT_ID/pytest-image:latest
并运行它:
docker run gcr.io/$PROJECT_ID/pytest-image:latest
结果:
============================= test session starts ==============================
platform linux -- Python 3.7.2, pytest-4.2.0, py-1.7.0, pluggy-0.8.1
rootdir: /src, inifile:
collected 1 item
test_sample.py . [100%]
=========================== 1 passed in 0.03 seconds ===========================