51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

‘Execute shell’ marked build as failure

'Execute shell' marked build as failure {#articleContentId}

解决方案:

修改configure
执行shell命令中,添加:#!/bin/bash

详细解释
Jenkins构建时运行脚本报错时:Build step 'Execute shell' marked build as failure
可能原因:
1.磁盘空间不足导致报错。
2.请在"Execute shell(执行shell)"构建步骤命令中添加:#!/bin/bash
一般默认情况下,Jenkins采取/bin/sh -xe这种方式-x将打印每一个命令;另一个选项-e,当任何命令以非零值(当任何命令失败时)退出代码时,这会导致shell立即停止运行脚本,而#!/bin/bash是指此脚本使用/bin/bash来解释执行

注释1:#!是一个特殊的表示符,后面表示解释此脚本的shell路径
注释2:bash只是shell的一种,还有很多其它shell,如:sh,csh。。等等
注释3:#!/bin/bash只能放在第一行,如果后面还有#!,那么只能看成是注释

赞(0)
未经允许不得转载:工具盒子 » ‘Execute shell’ marked build as failure