我有一个Jenkinsfile,其中包含仅当构建发生在master分支上时才部署到生产的步骤。在请求请求时,除“部署”步骤外,所有其他步骤均会发生。我的问题是,提交到母版后,构建不会自动开始。如何自动启动主请求和请求请求构建?
这是Jenkinsfile的症结所在:
df=pd.read_csv('data.csv')
cdf = df.drop(['DateTime'], axis=1)
wells = ['N1','N2','N3','N4','N5','N6','N7','N8','N9']
for ix, well in enumerate(wells):
well_cols = [col for col in cdf.columns if well in col]
wells[ix] = cdf[well_cols]
答案 0 :(得分:1)
这真是一个错误的警报。确保您的GitHub Webhook正在发送 push 事件以及请求请求事件到Jenkins。